【发布时间】:2021-09-08 13:19:19
【问题描述】:
我正在尝试将一些空间或 SizedBox() 作为 ListView 的最后一项, 因为 FloatingActionButton() 隐藏了最后一个 ListTile 的一些信息。
我想像 WhatsApp 一样滚动到空格/SizeBox()。
body: ListView.builder(
itemCount: cardsList.length,
itemBuilder: (context, i) {
return Column(
children: [
ListTile( ... ),
Divider( ... ),
],
);
},
),
【问题讨论】: