removed print statements

This commit is contained in:
asif
2025-09-04 01:57:32 +05:30
parent 1b684af3a8
commit a44ac67842

View File

@@ -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(