答案 0 :(得分:0)
尝试在容器中包装CustomScrollView并为容器小部件赋予颜色。
答案 1 :(得分:0)
使用此:
flutter_group_sliver:^ 0.0.2
答案 2 :(得分:0)
您可以将“ CustomScrollView”包装在容器上,并为该容器设置颜色。这是我解决的方法:
Widget build(BuildContext context) {
return Container(
color: Colors.white,
child: CustomScrollView(
slivers: <Widget>[
SliverAppBar(
title: Text('Title'),
expandedHeight: 100.0,
flexibleSpace: FlexibleSpaceBar(),
),
SliverList(
delegate: SliverChildListDelegate([]),
)
],
),
);
}