gpt4 book ai didi

flutter - 当 Flutter TextField 中的键盘可见时,键盘顶部有很多空白区域

转载 作者:IT老高 更新时间:2023-10-28 12:36:21 40 4
gpt4 key购买 nike

这是我的代码:

build(BuildContext context) {
return new Scaffold(
body: new SafeArea(
child: new ListView.builder(
itemBuilder: (itemBuilder),
itemCount: (1),
padding: kMaterialListPadding,
),
)
);
}
itemBuilder(BuildContext context, int index) {
return new TextFormField(
decoration: new InputDecoration(
border: const OutlineInputBorder(),
hintText: "What's on your mind?",
helperText: "5-500 characters",
),
maxLines: 3,
);
}

当我点击文本字段时,键盘会打开,但键盘顶部会出现很多空白区域,如图所示(文本字段的边框被剪切)。 enter image description here

它的发生是因为 ListView。如果我只将文本字段添加到正文中,则外观很好。

最佳答案

大量浪费空间的原因是脚手架里面有一个脚手架。每个脚手架都为键盘增加了空间。删除一个解决了问题。

关于flutter - 当 Flutter TextField 中的键盘可见时,键盘顶部有很多空白区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49584374/

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