Icon and logo issues fixed
This commit is contained in:
@@ -15,7 +15,17 @@ class AppThemes {
|
||||
colorScheme: colorScheme,
|
||||
useMaterial3: true,
|
||||
textTheme: GoogleFonts.rubikTextTheme(),
|
||||
);
|
||||
).copyWith(
|
||||
appBarTheme: AppBarTheme(
|
||||
backgroundColor: const Color(0xFF01A04C),
|
||||
titleTextStyle: TextStyle(
|
||||
color: colorScheme.onPrimary,
|
||||
fontWeight: FontWeight.w700,
|
||||
fontSize: 20,
|
||||
),
|
||||
iconTheme: IconThemeData(color: colorScheme.onPrimary),
|
||||
actionsIconTheme: IconThemeData(color: colorScheme.onPrimary),
|
||||
));
|
||||
}
|
||||
|
||||
static ThemeData getDarkTheme(ThemeType type) {
|
||||
@@ -32,7 +42,17 @@ class AppThemes {
|
||||
textTheme: GoogleFonts.rubikTextTheme(
|
||||
ThemeData(brightness: Brightness.dark).textTheme,
|
||||
),
|
||||
);
|
||||
).copyWith(
|
||||
appBarTheme: AppBarTheme(
|
||||
backgroundColor: const Color(0xFF01A04C),
|
||||
titleTextStyle: TextStyle(
|
||||
color: colorScheme.onPrimary,
|
||||
fontWeight: FontWeight.w700,
|
||||
fontSize: 20,
|
||||
),
|
||||
iconTheme: IconThemeData(color: colorScheme.onPrimary),
|
||||
actionsIconTheme: IconThemeData(color: colorScheme.onPrimary),
|
||||
));
|
||||
}
|
||||
|
||||
static Color _getSeedColor(ThemeType type) {
|
||||
|
||||
Reference in New Issue
Block a user