我在hintText
中有一个TextField
,我可以更改其颜色,但不能更改其大小。
如何更改它?
这是来自documentation的代码示例:
decoration: InputDecoration(
border: InputBorder.none,
hintText: 'Enter a search term'
),
);
答案 0 :(得分:4)
TextField(
decoration: InputDecoration(
border: InputBorder.none,
hintText: 'Enter a search term',
hintStyle: TextStyle(fontSize: 20), // you need this
),
)