Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 541b636

Browse files
authored
Sync Android AccessibilityFeature enum and dart:ui (#32460)
1 parent 49c9533 commit 541b636

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

shell/platform/android/io/flutter/view/AccessibilityBridge.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2063,7 +2063,11 @@ public enum Action {
20632063
private enum AccessibilityFeature {
20642064
ACCESSIBLE_NAVIGATION(1 << 0),
20652065
INVERT_COLORS(1 << 1), // NOT SUPPORTED
2066-
DISABLE_ANIMATIONS(1 << 2);
2066+
DISABLE_ANIMATIONS(1 << 2),
2067+
BOLD_TEXT(1 << 3), // NOT SUPPORTED
2068+
REDUCE_MOTION(1 << 4), // NOT SUPPORTED
2069+
HIGH_CONTRAST(1 << 5), // NOT SUPPORTED
2070+
ON_OFF_SWITCH_LABELS(1 << 6); // NOT SUPPORTED
20672071

20682072
final int value;
20692073

0 commit comments

Comments
 (0)