我希望我的身体在下面的代码中可以滚动,并显示现在的样子
我需要帮助才能使此功能正常工作
任何意见
有更好的主意 这是一个带有轮播的电子商务应用,然后在其下方进行分类,并在其下方进行产品
我需要滚动以使所有这些都像部分一样
如何?
body: new Column(
children: <Widget>[
// ================= IMAGE CAROUSEL BEGINS HERE ==================
new ImageCarouselUI(),
// ================= HORIZONTAL LIST SECTION ====================
//padding widget
new Padding(padding: const EdgeInsets.all(6.0),
child: Container(
alignment: Alignment.centerLeft,
child: new Text('Categories', style: new TextStyle(fontSize: 15.0),)),
),
//Horizontal list view begins here
HorizontalList(),
//padding widget
new Padding(padding: const EdgeInsets.all(10.0),
child: new Container(
alignment: Alignment.centerLeft,
child: new Text('Recent products')),),
//grid view
new Flexible(
child: Products()
),
],
),
我想要的图像:
答案 0 :(得分:0)
如果您的身体只有一个复杂的小部件,则可以使用SingleChildScrollView类。
//...
body: SingleChildScrollView ( // this will make your body scrollable
child: Column(
/// your parameters
children: <Widget> [
// your widgets,
// your widget...
],
),
)
,