gpt4 book ai didi

flutter |如何添加 SizedBox() 作为 ListView.builder() 的最后一项?

转载 作者:行者123 更新时间:2023-12-02 01:59:59 26 4
gpt4 key购买 nike

我试图将一些空间或 SizedBox() 作为 ListView 的最后一项,因为 FloatingActionButton() 隐藏了最后一个 ListTile 中的一些信息。

我想滚动到 space/SizeBox(),例如 WhatsApp。

body: ListView.builder(
itemCount: cardsList.length,
itemBuilder: (context, i) {
return Column(
children: [
ListTile( ... ),
Divider( ... ),
],
);
},
),

最佳答案

ListView具有填充属性

body: ListView.builder(
padding: const EdgeInsets.only(bottom: 100),
itemCount: cardsList.length,
itemBuilder: (context, i) {
return Column(
children: [
ListTile( ... ),
Divider( ... ),
],
);
},
),

关于 flutter |如何添加 SizedBox() 作为 ListView.builder() 的最后一项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69103871/

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