flutter trigger show off keyboard
FocusScope.of(context).unfocus()
flutter trigger show off keyboard
FocusScope.of(context).unfocus()
flutter unfocus textfield
FocusScope.of(context).unfocus();
flutter unfocus textfield
FocusScopeNode currentFocus = FocusScope.of(context);
if (!currentFocus.hasPrimaryFocus) {
currentFocus.unfocus();
}
unfocus textfield flutter
FocusScope.of(context).unfocus();
_textEditingController.clear();
how to unfocus textfield flutter
// Recommended Solution by Flutter Team.
FocusScopeNode currentScope = FocusScope.of(context);
if (!currentScope.hasPrimaryFocus && currentScope.hasFocus) {
FocusManager.instance.primaryFocus.unfocus();
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us