Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorvoltz committed Jun 11, 2022
1 parent 81e0cd6 commit 0e56877
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/src/blocs/theme_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class ThemeProvider extends ChangeNotifier{
/// sets the App's theme on start up.
Future<void> setTheme()async{
await ThemePreference.readData(themeMode).then((value) {
print('value read from storage: ' + value.toString());
var themeMode = value ?? 'light';
if (themeMode == 'light') {
_themeData = lightTheme;
Expand Down

0 comments on commit 0e56877

Please sign in to comment.