我有以下屏幕
这是代码:
return Scaffold(
backgroundColor: Palette.light,
body: RefreshIndicator(
onRefresh: () => MatchesController.refresh(matchesState, matchId),
child: CustomScrollView(
slivers: [
MatchAppBar(matchId: matchId),
SliverList(
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) {
return widgets[index];
},
childCount: widgets.length,
),
)
],
)),
bottomNavigationBar: SafeArea(child: BottomBarMatch(match: match)),
问题是我想使用SafeArea
并且bottomBarMatch
有Scaffold
不同的颜色。
我希望底栏下方的空间与底栏的颜色相同。如果我向上移动SafeArea
一层,我会看到它是黑色的(我猜是系统颜色)