带旋转木马的屏幕布局

问题描述 投票:-1回答:1

你好,我想在转盘下方添加按钮,但似乎可以找到解决方法enter image description here

flutter flutter-layout
1个回答
0
投票

您可以在列表视图的末尾添加按钮,如下所示:

ListView(
   children: <Widget>[
       image_slider_carousel,
       // here goes your button <=======
   ]
)
© www.soinside.com 2019 - 2024. All rights reserved.