|
|
|
@ -9,7 +9,12 @@ class AppThemes {
|
|
|
|
indicatorColor: AppColor.primary50,
|
|
|
|
indicatorColor: AppColor.primary50,
|
|
|
|
scaffoldBackgroundColor: AppColor.backgroundLight,
|
|
|
|
scaffoldBackgroundColor: AppColor.backgroundLight,
|
|
|
|
colorScheme: const ColorScheme.light(primary: AppColor.primary50, onPrimary: Colors.white, secondary: Colors.white, onSecondary: AppColor.neutral70),
|
|
|
|
colorScheme: const ColorScheme.light(primary: AppColor.primary50, onPrimary: Colors.white, secondary: Colors.white, onSecondary: AppColor.neutral70),
|
|
|
|
floatingActionButtonTheme: const FloatingActionButtonThemeData(backgroundColor: AppColor.backgroundDark),
|
|
|
|
floatingActionButtonTheme: const FloatingActionButtonThemeData(
|
|
|
|
|
|
|
|
elevation: 0,
|
|
|
|
|
|
|
|
iconSize: 46,
|
|
|
|
|
|
|
|
backgroundColor: AppColor.primary70,
|
|
|
|
|
|
|
|
foregroundColor: AppColor.neutral30,
|
|
|
|
|
|
|
|
),
|
|
|
|
bottomNavigationBarTheme: BottomNavigationBarThemeData(
|
|
|
|
bottomNavigationBarTheme: BottomNavigationBarThemeData(
|
|
|
|
type: BottomNavigationBarType.fixed,
|
|
|
|
type: BottomNavigationBarType.fixed,
|
|
|
|
unselectedLabelStyle: ThemeData.light().textTheme.bodySmall?.copyWith(fontWeight: FontWeight.w500),
|
|
|
|
unselectedLabelStyle: ThemeData.light().textTheme.bodySmall?.copyWith(fontWeight: FontWeight.w500),
|
|
|
|
@ -32,7 +37,12 @@ class AppThemes {
|
|
|
|
indicatorColor: AppColor.primary50,
|
|
|
|
indicatorColor: AppColor.primary50,
|
|
|
|
scaffoldBackgroundColor: AppColor.backgroundDark,
|
|
|
|
scaffoldBackgroundColor: AppColor.backgroundDark,
|
|
|
|
colorScheme: const ColorScheme.light(primary: AppColor.primary50, onPrimary: AppColor.neutral60, secondary: AppColor.neutral60, onSecondary: Colors.white),
|
|
|
|
colorScheme: const ColorScheme.light(primary: AppColor.primary50, onPrimary: AppColor.neutral60, secondary: AppColor.neutral60, onSecondary: Colors.white),
|
|
|
|
floatingActionButtonTheme: const FloatingActionButtonThemeData(backgroundColor: AppColor.primary40),
|
|
|
|
floatingActionButtonTheme: const FloatingActionButtonThemeData(
|
|
|
|
|
|
|
|
elevation: 0,
|
|
|
|
|
|
|
|
iconSize: 46,
|
|
|
|
|
|
|
|
backgroundColor: AppColor.primary40,
|
|
|
|
|
|
|
|
foregroundColor: AppColor.neutral50,
|
|
|
|
|
|
|
|
),
|
|
|
|
bottomNavigationBarTheme: BottomNavigationBarThemeData(
|
|
|
|
bottomNavigationBarTheme: BottomNavigationBarThemeData(
|
|
|
|
type: BottomNavigationBarType.fixed,
|
|
|
|
type: BottomNavigationBarType.fixed,
|
|
|
|
unselectedLabelStyle: ThemeData.dark().textTheme.bodySmall?.copyWith(fontWeight: FontWeight.w500),
|
|
|
|
unselectedLabelStyle: ThemeData.dark().textTheme.bodySmall?.copyWith(fontWeight: FontWeight.w500),
|
|
|
|
|