How can I dismiss the on screen keyboard?
For Flutter version 2 or latest : Since Flutter 2 with null safety this is the best way: FocusManager.instance.primaryFocus?.unfocus(); Note: using old ways leads to some problems like keep rebuild states; For Flutter version < 2 : As of Flutter v1.7.8+hotfix.2, the way to go is: FocusScope.of(context).unfocus(); Comment on PR about that: Now that #31909 … Read more