MaxLength属性-更改默认颜色

时间:2019-12-28 13:10:52

标签: flutter properties maxlength

我想将 maxLength 属性的默认颜色更改为与 TextFormField 相同的颜色。有人有解决问题的方法吗?

enter image description here

谢谢!

1 个答案:

答案 0 :(得分:2)

以下示例应该会有所帮助,只需将color属性更改为所需的属性即可:

TextFormField(decoration: InputDecoration(
                          counterStyle: TextStyle(color: Colors.black),)
                    ...
                    ...
              )