Reputation: 115
We have a requirement that we need to show the custom emojis on the keyboard instead of the default ones. Is there any way to load custom emoji's to the keyboard in Xamarin.forms.
Upvotes: 1
Views: 189
Reputation: 18861
How to load custom emojis to the keyboard?
Unfortunately it is impossible due to Android and iOS platform limitations.
However , we could implement our own keyboard view including a few emojis as buttons and some control buttons . Add a TapGestureRecognizer to your image. When this Tapped event fires show your custom keyboard view. For more details about how to show and hide the custom View , I had provided a solution here , you could have a check :)
Upvotes: 1