如何在带有抖动的移动应用程序中将图像设置为页脚

时间:2018-08-30 12:47:54

标签: dart flutter flutter-layout

我正在使用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小于屏幕时,我遇到了问题,在这种情况下,图像不在屏幕底部。如果列表视图不能完全填满屏幕,我想对其进行“扩展”,以便获得所需的效果(底部的图像)。

您认为有可能吗? 用哪种方式?

我想要的效果:

enter image description here

我得到的效果:

enter image description here

谢谢

0 个答案:

没有答案