mirror of
https://github.com/immich-app/immich.git
synced 2025-03-01 15:11:21 +01: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…
Add table
Reference in a new issue