add fruit sorbet to mobile + desktop appearance settings

This commit is contained in:
ryleedavis 2023-01-23 11:00:46 -07:00
parent edec5f0c2a
commit d25b757a22
2 changed files with 4 additions and 0 deletions

View file

@ -31,6 +31,8 @@ class AppearanceSettingsView extends ConsumerWidget {
return "Dark theme";
case ThemeType.oledBlack:
return "Oled Black theme";
case ThemeType.fruitSorbet:
return "Fruit Sorbet theme";
}
}

View file

@ -169,6 +169,8 @@ class _ThemeToggle extends ConsumerState<ThemeToggle> {
return Assets.svg.themeOcean;
case ThemeType.oledBlack:
return Assets.svg.themeOledBlack;
case ThemeType.fruitSorbet:
return Assets.svg.themeFruit;
}
}