feat: implement per book settings with player configuration and update methods

This commit is contained in:
Dr-Blank 2024-09-17 23:19:05 -04:00
parent fd42ee2343
commit e7dd4de515
No known key found for this signature in database
GPG key ID: 7452CC63F210A266
19 changed files with 1030 additions and 20 deletions

View file

@ -48,7 +48,7 @@ class AppSettings extends _$AppSettings {
.themeSettings(isDarkMode: !state.themeSettings.isDarkMode);
}
void updateState(model.AppSettings newSettings) {
void update(model.AppSettings newSettings) {
state = newSettings;
}