Skip to content

Commit

Permalink
seekcontrol already exist on Android/iOS as adjustable
Browse files Browse the repository at this point in the history
  • Loading branch information
fabOnReact committed Aug 31, 2022
1 parent 1b69235 commit d460d09
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion Libraries/Components/View/ViewAccessibility.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export type AccessibilityRole =
| 'progressbar'
| 'radio'
| 'radiogroup'
| 'seekcontrol'
| 'scrollbar'
| 'spinbutton'
| 'switch'
Expand Down
1 change: 0 additions & 1 deletion React/Views/RCTViewManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ @implementation RCTConvert (UIAccessibilityTraits)
@"progressbar" : @(UIAccessibilityTraitUpdatesFrequently),
@"radio" : @(UIAccessibilityTraitNone),
@"radiogroup" : @(UIAccessibilityTraitNone),
@"seekcontrol" : @(UIAccessibilityTraitNone),
@"scrollbar" : @(UIAccessibilityTraitNone),
@"spinbutton" : @(UIAccessibilityTraitNone),
@"switch" : @(SwitchAccessibilityTrait),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ public enum AccessibilityRole {
MENUITEM,
PROGRESSBAR,
RADIO,
SEEKCONTROL,
RADIOGROUP,
SCROLLBAR,
SPINBUTTON,
Expand Down Expand Up @@ -163,8 +162,6 @@ public static String getValue(AccessibilityRole role) {
return "android.widget.CheckBox";
case RADIO:
return "android.widget.RadioButton";
case SEEKCONTROL:
return "android.widget.SeekBar";
case SPINBUTTON:
return "android.widget.SpinButton";
case SWITCH:
Expand Down

0 comments on commit d460d09

Please sign in to comment.