【发布时间】:2020-05-11 18:36:43
【问题描述】:
我们可以让标签文本居中吗?我尝试使用文本对齐,但它只会使提示文本和输入文本居中,而不是标签文本。这是我的代码:
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',
),
),
【问题讨论】: