We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2cae0e commit 7ac8031Copy full SHA for 7ac8031
2 files changed
packages/devtools_app/lib/src/shared/feature_flags.dart
@@ -93,7 +93,7 @@ extension FeatureFlags on Never {
93
/// Flag to enable refactors in the Flutter Property Editor sidebar.
94
///
95
/// https://github.com/flutter/devtools/issues/9214
96
- static bool propertyEditorRefactors = enableExperiments;
+ static bool propertyEditorRefactors = true;
97
98
/// Stores a map of all the feature flags for debugging purposes.
99
packages/devtools_app/test/shared/primitives/feature_flags_test.dart
@@ -19,6 +19,6 @@ void main() {
19
expect(FeatureFlags.dapDebugging, false);
20
expect(FeatureFlags.inspectorV2, true);
21
expect(FeatureFlags.wasmOptInSetting, true);
22
- expect(FeatureFlags.propertyEditorRefactors, false);
+ expect(FeatureFlags.propertyEditorRefactors, true);
23
});
24
}
0 commit comments