fix: 动态页背景色

This commit is contained in:
guozhigq
2023-11-12 17:20:42 +08:00
parent e5342c386f
commit 0ed4e33934
2 changed files with 33 additions and 23 deletions

View File

@ -231,6 +231,15 @@ class _DynamicsPageState extends State<DynamicsPage>
}
},
),
SliverToBoxAdapter(
child: Container(
height: 6,
color: Theme.of(context)
.colorScheme
.onInverseSurface
.withOpacity(0.5),
),
),
FutureBuilder(
future: _futureBuilderFuture,
builder: (context, snapshot) {