如何使标签文本以颤动为中心

时间:2020-05-11 18:36:43

标签: flutter flutter-layout

我们可以使标签文本居中吗?我尝试使用文本对齐,但是它仅使提示文本和输入文本居中,而不是标签文本居中。这是我的代码:

TextFormField(
  style: TextStyle(
    color: Colors.white,
  ),
  // textAlign: TextAlign.center,
  decoration: InputDecoration(

    hintText: 'example@gmail.com',
    hintStyle: TextStyle(                      
      color: Colors.white,
    ),
    alignLabelWithHint: true,
    labelStyle: TextStyle(
    color: Color(0xff9fe0ff),
    fontSize: 25,
  ),
  border: UnderlineInputBorder(
  borderSide: BorderSide(
  color: Color(0xff9fe0ff),
  ),
),
  labelText: 'Email',
),
),

1 个答案:

答案 0 :(得分:1)

使用默认的TextFormField是不可能的。如您所见,对此存在一个未解决的问题:https://github.com/flutter/flutter/issues/2735