Improved json auto save & budget mobile UI

This commit is contained in:
2024-03-03 17:14:00 +01:00
parent f86c4cd18b
commit fc6f64a271
20 changed files with 570 additions and 168 deletions

View File

@@ -0,0 +1,17 @@
part of 'settings_bloc.dart';
class SettingsState {
final ThemeMode themeMode;
const SettingsState({
this.themeMode = ThemeMode.system,
});
SettingsState copyWith({
ThemeMode? themeMode,
}) {
return SettingsState(
themeMode: themeMode ?? this.themeMode,
);
}
}