diff --git a/mobile/lib/ui/tabs/home_widget.dart b/mobile/lib/ui/tabs/home_widget.dart index 6eed6c17b1..bd5f2da610 100644 --- a/mobile/lib/ui/tabs/home_widget.dart +++ b/mobile/lib/ui/tabs/home_widget.dart @@ -361,6 +361,15 @@ class _HomeWidgetState extends State { ), ), + ///To fix the status bar not adapting it's color when switching + ///screens the have different appbar colours. + appBar: PreferredSize( + preferredSize: const Size.fromHeight(0), + child: AppBar( + backgroundColor: getEnteColorScheme(context).backgroundElevated, + ), + ), + resizeToAvoidBottomInset: false, ), ),