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

后端 未结 5 592
甜味超标
甜味超标 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:08

    Please try change to

    inputType: const TextInputType.numberWithOptions(signed: true),
    inputFormatters: [
       FilteringTextInputFormatter.digitsOnly,
    ],
    

提交回复
热议问题