使用ListView时如何将小部件放置在页面底部?

时间:2019-03-23 01:59:27

标签: flutter

我必须使用listview小部件来显示我的小部件。页面底部应有一个按钮。即使在listview中没有足够的元素,按钮也应该放在底部。

我可以使用列和扩展的小部件来实现它,但是它不能满足我的需求。我必须使用列表视图。我该如何实现?

1 个答案:

答案 0 :(得分:0)

在列表视图构建器中,而不是仅使用“返回”,请使用:

if (index != yourlist.length -1) {
  // Not the last list item, so
  // return list item as usual, i.e. your original return statement
} else {
  // Last List Item, so
  // return a column that:
  // First children: last list item
  // Second children: your other widget that you want to put at the bottom
}