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
Summary:
`aria-checked` prop should accept `mixed` as value as given [here](https://www.w3.org/WAI/GL/wiki/Using_WAI-ARIA_aria-checked%3Dmixed) and also [accessibilityState.checked](https://reactnative.dev/docs/accessibility#accessibilitystate) accepts mixed to represent checkboxes. This change refers to issue #34424 and PR #34524
## Changelog
[General] [Added] - Added `mixed` value for `aria-checked`.
Pull Request resolved: #34633
Test Plan:
```js
<TouchableOpacity
accessibilityRole="checkbox"
aria-checked="mixed"
accessibilityHint="click me to change state">
<Text>Checkbox example</Text>
</TouchableOpacity>
```
Reviewed By: lunaleaps
Differential Revision: D39382158
Pulled By: necolas
fbshipit-source-id: fa026274111305cc0bcbb42ed974ca1be7d779a5
0 commit comments