hello. I'm developing a Xamarin.forms app and using SfChat. I tried to remove Done button over the keyboard when keyboard is focused. I tried to use your code in this thread https://www.syncfusion.com/forums/155966/chat-editor-only and, in OnElementChanged func, I tried to insert:
if (this.Control != null)
{
this.Control.InputAccessoryView = null;
}
but it doesnt' work. Any idea to solve?