How can I dismiss the on screen keyboard?

前端 未结 18 2314
星月不相逢
星月不相逢 2020-11-30 18:31

I am collecting user input with a TextFormField and when the user presses a FloatingActionButton indicating they are done, I want to dismiss the on

18条回答
  •  独厮守ぢ
    2020-11-30 18:51

    Solution with FocusScope doesn't work for me. I found another:

    import 'package:flutter/services.dart';
    
    SystemChannels.textInput.invokeMethod('TextInput.hide');
    

    It solved my problem.

提交回复
热议问题