mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 06:31:58 +00:00
Change color of dark theme for UI overlay
This commit is contained in:
parent
da4fd201ad
commit
20cab5a949
1 changed files with 8 additions and 1 deletions
|
@ -100,7 +100,14 @@ class ImmichSliverAppBar extends ConsumerWidget {
|
|||
],
|
||||
),
|
||||
],
|
||||
systemOverlayStyle: SystemUiOverlayStyle.light,
|
||||
systemOverlayStyle: const SystemUiOverlayStyle(
|
||||
// Status bar color
|
||||
statusBarColor: Colors.indigo,
|
||||
|
||||
// Status bar brightness (optional)
|
||||
statusBarIconBrightness: Brightness.dark, // For Android (dark icons)
|
||||
statusBarBrightness: Brightness.light, // For iOS (dark icons)
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue