It appears MAUI for .NET 8 doesn't have a way to close the soft keyboard on iOS when the entry is numeric. Applying the HideSoftInputOnTapped is works for the built-in controls that specify a numeric keyboard (e.g. SearchBar) but does not work for Telerik controls such as:
<telerik:RadEntry Keyboard="Numeric"/>
Can anyone suggest a workaround for this?
I've tried implementing this concept, swapping in the RadEntryHandler, but could not get the following line to compile (it didn't let me assign a value to the InputAccessoryView).
handler.PlatformView.InputAccessoryView = toolbar;
Here is a complete description of what I'm referring to.
Thanks in advance!