我们可以使标签文本居中吗?我尝试使用文本对齐,但是它仅使提示文本和输入文本居中,而不是标签文本居中。这是我的代码:
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',
),
),
答案 0 :(得分:1)
使用默认的TextFormField
是不可能的。如您所见,对此存在一个未解决的问题:https://github.com/flutter/flutter/issues/2735。