Input predictable - Xamarin

In Xamarin, be careful when using TextChanged callbacks. Do not trigger a change of context when text changes.

entry.TextChanged += OnEntryTextChanged;

void OnEntryTextChanged(object sender, TextChangedEventArgs args)
{
  // Do not change context
}