This commit is contained in:
2026-04-07 11:30:22 +02:00
parent 4bbd1edf48
commit 130780cbb8
20 changed files with 426 additions and 131 deletions

View File

@@ -1,14 +0,0 @@
part of 'theme_bloc.dart';
class ThemeState extends Equatable {
const ThemeState({required this.currentTheme});
final AppThemeMode currentTheme;
@override
List<Object?> get props => [currentTheme];
ThemeState copyWith({AppThemeMode? currentTheme}) {
return ThemeState(currentTheme: currentTheme ?? this.currentTheme);
}
}