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 {
static ThemeData getLightTheme(ThemeType type) {
print('inside get light theme');
final Color seedColor = _getSeedColor(type);
final colorScheme = ColorScheme.fromSeed(
seedColor: seedColor,
brightness: Brightness.light,
);
print(seedColor.toString());
return ThemeData.from(
colorScheme: colorScheme,
useMaterial3: true,
@@ -67,7 +65,6 @@ class AppThemes {
}
static ThemeData getDarkTheme(ThemeType type) {
print('inside get dark theme');
final Color seedColor = _getSeedColor(type);
log(seedColor.toString());
final colorScheme = ColorScheme.fromSeed(