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

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

    Change

    keyboardType: TextInputType.number
    

    to

    keyboardType: TextInputType.numberWithOptions(signed: true, decimal: true)
    

提交回复
热议问题