From 65fa3cb624c240360de5a06778a1f72ad10bbe2d Mon Sep 17 00:00:00 2001 From: Kingkor Roy Tirtho Date: Sun, 18 Jun 2023 13:25:59 +0600 Subject: [PATCH] fix: status bar color of playlist/album page --- .../track_collection_view/track_collection_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/shared/track_table/track_collection_view/track_collection_view.dart b/lib/components/shared/track_table/track_collection_view/track_collection_view.dart index b2e639b5..78d74fcd 100644 --- a/lib/components/shared/track_table/track_collection_view/track_collection_view.dart +++ b/lib/components/shared/track_table/track_collection_view/track_collection_view.dart @@ -88,7 +88,7 @@ class TrackCollectionView extends HookConsumerWidget { final collapsed = useState(false); useCustomStatusBarColor( - color?.color ?? theme.scaffoldBackgroundColor, + Colors.transparent, GoRouter.of(context).location == routePath, );