如何制作ListViewBuilder和其他小部件的ScrollView?

时间:2019-06-05 15:01:23

标签: flutter

我想制作一个ScrollView,其中包含一些小部件以及ListView Builder中的项目。但是,它们都应该一起滚动(就像一个列表的一部分),这似乎很困难,因为ListView Builder具有自己的滚动行为,并且会产生冲突。我该如何解决?

 Column tiles = Column(
      children: <Widget>[
        Padding(
          padding: const EdgeInsets.only(top: 16.0, bottom: 14.0, left: 20.0, right: 20.0 ),
          child: Row(
          ....// Other Row Widgets I want to scroll 
          ),
        ),
        Expanded(
          child: FutureBuilder(
              future: getAllTiles,
              initialData: [],
              builder: (context, snapshot) {
             //returns ListView Builder
              }),
        ),
      ],
   );

1 个答案:

答案 0 :(得分:0)

尝试使用传播算子

ListView(
     children: [
       DrawerHeader(...),
       ..._buildUserGroups(context),
       ListTile(...)
     ],
   ),```
Note: this is available only in Dart>2.2