我有一个TextField
这样的,输入文本和提示文本的大小不同。
TextField(
style: Theme.of(context).textTheme.subhead.copyWith(
fontSize: 70.0,
),
decoration: InputDecoration(
hintText: 'Enter a number',
hideDivider: true,
hintStyle: TextStyle(
color: Colors.grey[500],
fontSize: 25.0,
),
),
);
虽然用户输入文本在我的父容器中居中,但hintText 不是(顶部空间比底部空间大)。有没有办法将提示文本垂直居中?
提示文本与输入文本大小不同的原因是它比绿色 Container 占用的空间更多,所以看起来像Enter a nu...
,这对用户不是很友好。(或者,有没有办法在hintText中有换行符?)