我正在使用Flutter开发移动应用。
我有一个Scaffold,它的主体中有一个ListView小部件。我想在屏幕底部将图像设置为ListView的最后一个元素。
return Scaffold(
backgroundColor: Color(0xFFF8F8F8),
appBar: myAppBar,
body: ListView(
children: <Widget>[
//some widgets,
Container(
child:Image.asset(_bottomImageLocation),
),
],
),
bottomNavigationBar: bottomNavBar,
);
_bottomImageLocation包含资产的路径。 当ListView小于屏幕时,我遇到了问题,在这种情况下,图像不在屏幕底部。如果列表视图不能完全填满屏幕,我想对其进行“扩展”,以便获得所需的效果(底部的图像)。
您认为有可能吗? 用哪种方式?
我想要的效果:
我得到的效果:
谢谢