Answers for "hide keyboard in flutter"

2

hide keyboard flutter

FocusScope.of(context).unfocus()
Posted by: Guest on June-15-2020
0

hide keyboard in flutter

/// Hide the soft keyboard.
void hideKeyboard(BuildContext context) {
  FocusScope.of(context).requestFocus(FocusNode());
}
Posted by: Guest on August-04-2021

Code answers related to "hide keyboard in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language