gpt4 book ai didi

flutter - TextField 的输入文本在填满后切成两半?

转载 作者:行者123 更新时间:2023-12-04 02:33:47 29 4
gpt4 key购买 nike

Screenshot of the problem


我正在尝试添加一个电子邮件,这是一个长文本,但是当文本字段已满时,它将所有文本切成两半。
这是我的代码:
        Container(
height: 45,
decoration: BoxDecoration(
color: HexColor(MyColors.white),
),
child: TextFormField(
controller: _email,
maxLength: 100,
autofocus: true,
validator: validateEmail,
keyboardType: TextInputType.emailAddress,
decoration: InputDecoration(
labelText: 'Email',
counterText: "",
border: OutlineInputBorder(),
),
),
),

最佳答案

我明白你的意思..你的问题是文字变高了..你可以设置
只需调整内容 Padding top bottom 使其居中

decoration: InputDecoration(
contentPadding:
const EdgeInsets.only(
left: 8.0,
bottom: 8.0,
top: 8.0)),```

关于flutter - TextField 的输入文本在填满后切成两半?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62769115/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com