Flutter - how to add done button in number keyboard in flutter
问题 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( key: Key(keyValue), initialValue: valueBuilder, onSaved: (text) { fieldsController.text = text.trim(); }, inputFormatters: [inputFormatters], keyboardType: TextInputType.phoneNumber,) I want create a keyboard like the below. For the input text form field. 回答1: Change keyboardType: TextInputType.number to keyboardType: TextInputType.numberWithOptions(signed: true,