You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The DropDownPicker has several accessibility issues.
When in VoiceOver mode, the element should declare its role and state.
Level A - 1.3.1 Info and Relationships -
An easy fix - add role and state to the dropdown: <TouchableOpacity accessibilityRole='combobox' accessibilityState={{expanded: open}} style={_style} onPress={__onPress} onLayout={__onLayout} {...props} ref={onRef} pointerEvents={pointerEvents} disabled={disabled} testID={testID}>
In addition, the accessibility properties should be exported:
accessible
accessibilityRole
accessibilityState
accessibilityLabel
The text was updated successfully, but these errors were encountered:
The DropDownPicker has several accessibility issues.
When in VoiceOver mode, the element should declare its role and state.
Level A - 1.3.1 Info and Relationships -
An easy fix - add role and state to the dropdown:
<TouchableOpacity accessibilityRole='combobox' accessibilityState={{expanded: open}} style={_style} onPress={__onPress} onLayout={__onLayout} {...props} ref={onRef} pointerEvents={pointerEvents} disabled={disabled} testID={testID}>
In addition, the accessibility properties should be exported:
accessible
accessibilityRole
accessibilityState
accessibilityLabel
The text was updated successfully, but these errors were encountered: