我正在使用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上方。
这是我目前拥有的
这是我想要实现的