Esempio n. 1
0
        public static void UpdateKeyboard(this UITextField textField, IEntry entry)
        {
            var keyboard = entry.Keyboard;

            textField.ApplyKeyboard(keyboard);

            if (keyboard is not CustomKeyboard)
            {
                textField.UpdateIsTextPredictionEnabled(entry);
            }

            textField.ReloadInputViews();
        }
 void UpdateKeyboard()
 {
     ValueField.ApplyKeyboard(_EntryCell.Keyboard);
 }