Flutter Trigger демонстрировать клавиатуру
FocusScope.of(context).unfocus()
Brave Booby
FocusScope.of(context).unfocus()
// The correct way of closing the keyboard is
FocusScope.of(context).unfocus();
class _HomeState extends State<Home> {
var currentFocus;
unfocus() {
currentFocus = FocusScope.of(context);
if (!currentFocus.hasPrimaryFocus) {
currentFocus.unfocus();
}
}
Widget build(BuildContext context) {
return GestureDetector(
onTap: unfocus,
child: Scaffold(...)
)
}
FocusScope.of(context).unfocus();
override func viewDidLoad() {
super.viewDidLoad()
//Looks for single or multiple taps.
let tap: UITapGestureRecognizer = UITapGestureRecognizer(target: self, action: "dismissKeyboard")
//Uncomment the line below if you want the tap not not interfere and cancel other interactions.
//tap.cancelsTouchesInView = false
view.addGestureRecognizer(tap)
}
//Calls this function when the tap is recognized.
@objc func dismissKeyboard() {
//Causes the view (or one of its embedded text fields) to resign the first responder status.
view.endEditing(true)
}
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);