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

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

    There is no done button in iOS but we can check the length of the input and clear focus to hide the numberpad keyboard. Implement like below,(it'll work with fix length of number value)

    onChanged: (val) {
            if (val.length == 10) { //10 is the length of the phone number you're allowing
              FocusScope.of(context).requestFocus(FocusNode());
            }
          }
    

提交回复
热议问题