gpt4 book ai didi

flutter - Flutter TextField清除按钮位置错误

转载 作者:行者123 更新时间:2023-12-03 03:40:19 37 4
gpt4 key购买 nike

我想为我的文本框设置一个清除按钮。我找到了一个如何使用装饰添加它的示例,但是它的位置完全不对。如何调整图标的位置?
另外,我无法使输入文本在输入字段中居中。我什么都没找到如何在输入框中垂直居中放置文本。
谢谢!

...
TextEditingController _textFieldController = TextEditingController();
...

Widget searchField(BuildContext context) {
return Container(
width: 200,
height: 30,
color: Colors.grey[250],
child: TextField(
controller: _textFieldController,
decoration: InputDecoration(
suffix: IconButton(
padding: EdgeInsets.all(0),
alignment: Alignment.bottomLeft,
icon: Icon(Icons.cancel),
onPressed: _onClear,
),
border: OutlineInputBorder(),
hintText: 'Blablabla',
),
)
);
}
enter image description here

最佳答案

减少InputDecoration的填充为零。

             TextField(
decoration: InputDecoration(
contentPadding: EdgeInsets.zero,

关于flutter - Flutter TextField清除按钮位置错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56977240/

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