Flutter TextField 提示文本对齐

Posted

技术标签:

【中文标题】Flutter TextField 提示文本对齐【英文标题】:Flutter TextField hintText align 【发布时间】:2019-02-19 01:19:52 【问题描述】:

如何将hintTextTextField 的顶部对齐?

TextField (
    decoration: InputDecoration(
        hintText: 'align me to the top',
    ),
),
    textAlign 根本不会影响 hintTextTextStyle 没有 Align 属性,因为可以使用 hintStyle

【问题讨论】:

【参考方案1】:
TextField (
textAlign: TextAlign.center,
    decoration: InputDecoration(
        hintText: 'align me to the top',
    ),
),

【讨论】:

【参考方案2】:

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

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

这是标签在没有提示、没有选择输入、没有文本时的样子:

这就是标签在有文本或被选中时的样子。

【讨论】:

以上是关于Flutter TextField 提示文本对齐的主要内容,如果未能解决你的问题,请参考以下文章

在 TextField Flutter 中垂直居中对齐文本

Flutter中的居中对齐前导图标

Flutter - 如何更改 TextField 提示颜色?

无法在 Flutter TextField 小部件中垂直居中输入文本和后缀

Flutter TextField 居中对齐

Flutter:带有hintText的Cupertino TextField