Skip to content

Commit 313808c

Browse files
committed
update
1 parent b1d831a commit 313808c

File tree

5 files changed

+13
-2
lines changed

5 files changed

+13
-2
lines changed

packages/devtools_app/lib/src/screens/accessibility/accessibility_controller.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ class AccessibilityController extends DevToolsScreenController
1515
@override
1616
String get screenId => ScreenMetaData.accessibility.id;
1717

18-
/// Whether the accessibility feature is enabled.
1918
ValueListenable<bool> get accessibilityEnabled => _accessibilityEnabled;
2019
final _accessibilityEnabled = ValueNotifier<bool>(false);
2120

packages/devtools_app/lib/src/screens/accessibility/accessibility_controls.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2025 The Flutter Authors
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
4+
15
import 'dart:async';
26

37
import 'package:devtools_app_shared/ui.dart';

packages/devtools_app/lib/src/screens/accessibility/accessibility_results.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2025 The Flutter Authors
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
4+
15
import 'package:devtools_app_shared/ui.dart';
26
import 'package:flutter/material.dart';
37

packages/devtools_app/lib/src/screens/accessibility/accessibility_screen.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2025 The Flutter Authors
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
4+
15
import 'package:devtools_app_shared/ui.dart';
26
import 'package:flutter/material.dart';
37

packages/devtools_app/lib/src/shared/feature_flags.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ extension FeatureFlags on Never {
9898
/// https://github.com/flutter/devtools/issues/9044
9999
static final accessibility = BooleanFeatureFlag(
100100
name: 'accessibility',
101-
enabled: true,
101+
enabled: enableExperiments,
102102
);
103103

104104
/// A set of all the boolean feature flags for debugging purposes.

0 commit comments

Comments
 (0)