removed print statements
This commit is contained in:
@@ -46,13 +46,11 @@ import 'package:google_fonts/google_fonts.dart';
|
|||||||
|
|
||||||
class AppThemes {
|
class AppThemes {
|
||||||
static ThemeData getLightTheme(ThemeType type) {
|
static ThemeData getLightTheme(ThemeType type) {
|
||||||
print('inside get light theme');
|
|
||||||
final Color seedColor = _getSeedColor(type);
|
final Color seedColor = _getSeedColor(type);
|
||||||
final colorScheme = ColorScheme.fromSeed(
|
final colorScheme = ColorScheme.fromSeed(
|
||||||
seedColor: seedColor,
|
seedColor: seedColor,
|
||||||
brightness: Brightness.light,
|
brightness: Brightness.light,
|
||||||
);
|
);
|
||||||
print(seedColor.toString());
|
|
||||||
return ThemeData.from(
|
return ThemeData.from(
|
||||||
colorScheme: colorScheme,
|
colorScheme: colorScheme,
|
||||||
useMaterial3: true,
|
useMaterial3: true,
|
||||||
@@ -67,7 +65,6 @@ class AppThemes {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static ThemeData getDarkTheme(ThemeType type) {
|
static ThemeData getDarkTheme(ThemeType type) {
|
||||||
print('inside get dark theme');
|
|
||||||
final Color seedColor = _getSeedColor(type);
|
final Color seedColor = _getSeedColor(type);
|
||||||
log(seedColor.toString());
|
log(seedColor.toString());
|
||||||
final colorScheme = ColorScheme.fromSeed(
|
final colorScheme = ColorScheme.fromSeed(
|
||||||
|
Reference in New Issue
Block a user