TextField 在颤动中只接受一定数量的数字
Posted
技术标签:
【中文标题】TextField 在颤动中只接受一定数量的数字【英文标题】:TextField accept just certain count of numbers in flutter 【发布时间】:2021-06-02 14:00:16 【问题描述】:我有一个电话号码字段,我希望它只接受数字,用户只能输入 10 个数字
【问题讨论】:
flutter.dev/docs/cookbook/forms/… 【参考方案1】:使用带有keyboardType: TextInputType.phone
和inputFormatters: [LengthLimitingTextInputFormatter(10)]
的TextField 或TextFormField
【讨论】:
以上是关于TextField 在颤动中只接受一定数量的数字的主要内容,如果未能解决你的问题,请参考以下文章
如何限制 UITextField 在 Swift 中只接受数字?