Flutter - how to add done button in number keyboard in flutter

后端 未结 5 572
甜味超标
甜味超标 2021-02-05 12:49

I am trying to add done button in number type input for a TextFormField in flutter but I could not able to do that.

TextFormField(
              


        
5条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-05 13:28

    You don't need a done button just wrap MaterialApp with a GestureDetector

    GestureDetector(
      behavior: HitTestBehavior.opaque,
      onTap: () {
        FocusScopeNode currentFocus = FocusScope.of(context);
    
        if (!currentFocus.hasPrimaryFocus &&
            currentFocus.focusedChild != null) {
          FocusManager.instance.primaryFocus.unfocus();
        }
      },
      child: MaterialApp(
         title: "My title",
         home:MyHomeScreen(),
         ),
    );
    

提交回复
热议问题