最佳答案
我的工作在我的应用程序的样式,我不能改变的颜色输入的 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',
))),