diff --git a/cyberwow/lib/main.dart b/cyberwow/lib/main.dart index d4a5087..ce33f3d 100644 --- a/cyberwow/lib/main.dart +++ b/cyberwow/lib/main.dart @@ -54,6 +54,7 @@ class CyberWOW_App extends StatelessWidget { ( title: 'CyberWOW', theme: config.c.theme, + darkTheme: config.c.theme, home: CyberWOW_Page(title: 'CyberWOW'), ); } @@ -179,6 +180,9 @@ class _CyberWOW_PageState extends State with WidgetsBindingObserv WidgetsBinding.instance.addObserver(this); SystemChrome.setEnabledSystemUIOverlays([SystemUiOverlay.bottom]); + SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.dark.copyWith( + statusBarColor: Colors.black, + )); final BlankState _blankState = BlankState(_setState, _getNotification, _isExiting); _state = _blankState;