如何在CustomScrollView中堆叠碎片

时间:2019-06-29 15:10:12

标签: flutter

我正在使用CustomScrollView。我想堆放条子。这是我目前在CustomScrollView中使用的代码:

 SliverToBoxAdapter(
        child: Stack(
          children: <Widget>[
            Container(
              width: double.infinity,
              height: 50,
              decoration: BoxDecoration(color: pink),
            ),
          ],
        )
      ),
 SliverPadding(
        padding: const EdgeInsets.only(left: 30, right: 30, bottom: 25),
        sliver: SliverList(
          delegate:
              SliverChildBuilderDelegate((BuildContext context, int index) {
            return buildSongRow(songs[index]);
          }, childCount: songs.length),
        ),
      )

所以基本上我希望SliverPadding堆叠在SliverToBoxAdapter上方。

这是我目前拥有的

enter image description here

这是我想要实现的

enter image description here

0 个答案:

没有答案