fix: Material you improvements (#60)

This commit is contained in:
Aunali321
2022-09-06 18:07:23 +01:00
committed by Alberto Ponces
parent 27ef74b561
commit 10fbbe845e
3 changed files with 49 additions and 3 deletions

View File

@ -7,6 +7,13 @@ var lightCustomTheme = ThemeData(
seedColor: Colors.blue,
brightness: Brightness.light,
),
navigationBarTheme: NavigationBarThemeData(
labelTextStyle: MaterialStateProperty.all(
const TextStyle(
fontWeight: FontWeight.w500,
),
),
),
textTheme: GoogleFonts.robotoTextTheme(ThemeData.light().textTheme),
);
@ -18,6 +25,13 @@ var darkCustomTheme = ThemeData(
primary: const Color(0xff7792BA),
surface: const Color(0xff0A0D11),
),
navigationBarTheme: NavigationBarThemeData(
labelTextStyle: MaterialStateProperty.all(
const TextStyle(
fontWeight: FontWeight.w500,
),
),
),
canvasColor: const Color(0xff0A0D11),
scaffoldBackgroundColor: const Color(0xff0A0D11),
toggleableActiveColor: const Color(0xff7792BA),