Make status bar transparent on android

This commit is contained in:
Ming Ming 2022-11-07 19:32:04 +08:00
parent 62b28c67a0
commit 5fbed436c2

View file

@ -16,6 +16,9 @@ void main() async {
if (platform_k.isMobile) {
// reset orientation override just in case, see #59
unawaited(SystemChrome.setPreferredOrientations([]));
SystemChrome.setSystemUIOverlayStyle(const SystemUiOverlayStyle(
statusBarColor: Colors.transparent,
));
}
BlocOverrides.runZoned(
() => runApp(const MyApp()),