- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含 TextFormFields 列的表单。我的问题是,当我给 TextFormField keyboardType: TextInputType.number
和 textInputAction: TextInputAction.done
时,textInputAction 没有显示。对于其他键盘类型,这对我来说不是问题...
我的问题是:如何创建一个只有数字键盘的 TextFormField 并且有一个 textInputAction?
最佳答案
将此添加到您的 textFormField
keyboardType: TextInputType.numberWithOptions(signed: true),
inputFormatters: [
FilteringTextInputFormatter.digitsOnly,
],
关于Flutter TextFormField TextInputAction.done 不是带有键盘类型数字的选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71388566/
我在Flutter应用程序中使用TextFormField,如下例所示: @override Widget build(BuildContext context) { return Scaffol
所以在我的 TextFormField 小部件中,我将 TextInputAction 设置为 TextInputAction.next,我还定义了 focusNodes 和 onFieldSubmi
我有一个包含 TextFormFields 列的表单。我的问题是,当我给 TextFormField keyboardType: TextInputType.number 和 textInputAct
我有一个包含 TextFormFields 列的表单。我的问题是,当我给 TextFormField keyboardType: TextInputType.number 和 textInputAct
我是一名优秀的程序员,十分优秀!