From 718ffe00a6bc563a466dc3d1625580beb7c55832 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sun, 16 May 2021 18:10:59 +0200 Subject: [PATCH] refactor: Use default systemUiOverlayStyle --- lib/config/themes.dart | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/lib/config/themes.dart b/lib/config/themes.dart index 9699d2149..3235dbbc5 100644 --- a/lib/config/themes.dart +++ b/lib/config/themes.dart @@ -99,11 +99,7 @@ abstract class FluffyThemes { appBarTheme: AppBarTheme( brightness: Brightness.light, color: Colors.white, - systemOverlayStyle: SystemUiOverlayStyle( - systemNavigationBarColor: Colors.white, - systemNavigationBarIconBrightness: Brightness.dark, - statusBarColor: Colors.transparent, - ), + systemOverlayStyle: SystemUiOverlayStyle.dark, textTheme: TextTheme( headline6: TextStyle( color: Colors.black, @@ -182,11 +178,7 @@ abstract class FluffyThemes { appBarTheme: AppBarTheme( brightness: Brightness.dark, color: Color(0xff1D1D1D), - systemOverlayStyle: SystemUiOverlayStyle( - systemNavigationBarColor: Colors.black, - systemNavigationBarIconBrightness: Brightness.light, - statusBarColor: Colors.transparent, - ), + systemOverlayStyle: SystemUiOverlayStyle.light, textTheme: TextTheme( headline6: TextStyle( color: Colors.white,