Xamarin.Forms Entry That Should Not Show SoftKeyboard On Its Focus
I am working on Xamarin Forms project and I am using Entry view and that is requirement since i need to be able to focus on it but it is also requirement to not show soft keyboard.
Solution 1:
Try adding this inside your KeyboardlessEntryRenderer
class:
public KeyboardlessEntryRenderer (Context context) : base(context)
{
}
Post a Comment for "Xamarin.Forms Entry That Should Not Show SoftKeyboard On Its Focus"