refactor: Upgrade to Flutter 2.5

This commit is contained in:
Krille Fear 2021-09-13 17:41:53 +02:00
commit eba304556c
7 changed files with 39 additions and 49 deletions

View file

@ -107,13 +107,11 @@ abstract class FluffyThemes {
),
appBarTheme: AppBarTheme(
elevation: 2,
brightness: Brightness.light,
systemOverlayStyle: SystemUiOverlayStyle.dark,
color: Colors.white,
textTheme: TextTheme(
headline6: TextStyle(
color: Colors.black,
fontSize: 20,
),
titleTextStyle: TextStyle(
color: Colors.black,
fontSize: 20,
),
iconTheme: IconThemeData(color: Colors.black),
),
@ -197,13 +195,11 @@ abstract class FluffyThemes {
snackBarTheme: SnackBarThemeData(behavior: SnackBarBehavior.floating),
appBarTheme: AppBarTheme(
elevation: 2,
brightness: Brightness.dark,
systemOverlayStyle: SystemUiOverlayStyle.light,
color: Color(0xff1D1D1D),
textTheme: TextTheme(
headline6: TextStyle(
color: Colors.white,
fontSize: 20,
),
titleTextStyle: TextStyle(
color: Colors.white,
fontSize: 20,
),
iconTheme: IconThemeData(color: Colors.white),
),