From a66d1d0d3f8845568367e0351710feeaa4567df0 Mon Sep 17 00:00:00 2001 From: Krille Fear Date: Tue, 14 Sep 2021 08:50:25 +0200 Subject: [PATCH] fix: Flutter2.5 invisible appbar --- lib/config/themes.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/config/themes.dart b/lib/config/themes.dart index 3a11423eb..8657367a9 100644 --- a/lib/config/themes.dart +++ b/lib/config/themes.dart @@ -108,7 +108,7 @@ abstract class FluffyThemes { appBarTheme: AppBarTheme( elevation: 2, systemOverlayStyle: SystemUiOverlayStyle.dark, - color: Colors.white, + backgroundColor: Colors.white, titleTextStyle: TextStyle( color: Colors.black, fontSize: 20, @@ -196,7 +196,7 @@ abstract class FluffyThemes { appBarTheme: AppBarTheme( elevation: 2, systemOverlayStyle: SystemUiOverlayStyle.light, - color: Color(0xff1D1D1D), + backgroundColor: Color(0xff1D1D1D), titleTextStyle: TextStyle( color: Colors.white, fontSize: 20,