gpt4 book ai didi

flutter - 如何更改 TextField 中字符串输入的颜色?

转载 作者:IT老高 更新时间:2023-10-28 12:33:05 26 4
gpt4 key购买 nike

我正在使用我的应用程序的样式,我无法更改 TextField 输入的颜色,没有任何属性可以更改它。

 Theme(
data: new ThemeData(
hintColor: Colors.white
),
child:
TextField(
focusNode: _focusUsername,
controller: _controller,
decoration: InputDecoration(
border: InputBorder.none,
fillColor: Colors.grey,
filled: true,
hintText: 'Username',
))),

最佳答案

你可以指定一个TextStyle

TextField(
style: TextStyle(color: Colors.white),
...
)

https://docs.flutter.io/flutter/painting/TextStyle-class.html

关于flutter - 如何更改 TextField 中字符串输入的颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50174158/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com