如何在Flutter中更改提示文本的大小?

6

我在一个 TextField 中有一条hintText,我可以改变它的颜色,但无法改变它的大小。

我该如何更改它的大小?

以下是来自文档的代码示例:

  decoration: InputDecoration(
    border: InputBorder.none,
    hintText: 'Enter a search term'
  ),
);
1个回答

16
TextField(
  decoration: InputDecoration(
    border: InputBorder.none,
    hintText: 'Enter a search term',
    hintStyle: TextStyle(fontSize: 20), // you need this
  ),
)

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接