Skip to content

Commit

Permalink
Set defaultUseMaterial3 = false due to Flutter issue 107190
Browse files Browse the repository at this point in the history
To avoid having this issue visible as default in Theme Playground
we default useMaterial3 until it is fixed or behaves better
flutter/flutter#107190
  • Loading branch information
rydmike committed Jul 8, 2022
1 parent ca72786 commit 4ea7bec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/lib/shared/const/store.dart
Expand Up @@ -203,7 +203,7 @@ class Store {
// Key used to read and save the useMaterial3 value.
static const String keyUseMaterial3 = 'useMaterial3';
// Default value for the useMaterial3, also to reset settings.
static const bool defaultUseMaterial3 = true;
static const bool defaultUseMaterial3 = false;

// Key used to read and save the useKeyColors value.
static const String keyUseKeyColors = 'useKeyColors';
Expand Down

0 comments on commit 4ea7bec

Please sign in to comment.