移除文本字段中的数字计数

2022-05-08

以下示例是关于Dart中包含移除文本字段中的数字计数用法的示例代码,想了解移除文本字段中的数字计数的具体用法?移除文本字段中的数字计数怎么用?移除文本字段中的数字计数使用的例子?那么可以参考以下相关源代码片段来学习它的具体使用方法。

[英]:remove number count in textfield flutter源码类型:Dart
TextField(
  maxLength: 2,
  decoration: InputDecoration(
  	counterText: ''
  ),
),

本文地址:https://www.itbaoku.cn/snippets/785569.html