Flutter TextField hintText对齐

时间:2018-09-14 08:56:22

标签: flutter textfield

如何将hintText对齐到TextField的顶部?

TextField(

    decoration: InputDecoration(
        hintText: 'align me to the top',
        ),
  ),

1)textAlign完全不影响hintText。 2)TextStyle不具有Align属性,因为可以使用hintStyle。

2 个答案:

答案 0 :(得分:1)

如果这样做不行,您可能需要更新所需的图像,但我认为它可能像使用labelText而不是hintText一样简单。

这是您可以添加的各种文本的位置:

Label, hint, and helper for InputDecoration

这是没有提示,未选择输入且没有文本时的标签外观:

Label not selected

这是当有文本或选中文本时Label的外观。

Label text example

答案 1 :(得分:0)

TextField (
textAlign: TextAlign.center,
    decoration: InputDecoration(
        hintText: 'align me to the top',
    ),
),