-
Notifications
You must be signed in to change notification settings - Fork 24.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Accessibility] Accessibility / 508 compliance ? #342
Comments
+1 I believe React Native components does not expose accessibility props to iOS, I'm not an expert, but it seems true. |
We definitely do support that. See https://github.com/facebook/react-native/blob/master/Libraries/Components/View/View.js#L69 |
I figured out the image problem (read the docs 😑) by adding accessible={true} but this prop doesn't appear to be available on Text components. How do we make the non-touchable Text components still readable?
|
All the text elements should be accessible by default. Need to ensure that the accessibility features that we have in the internal codebase are ported to open source. |
There appears to be code looking for accessiblityLabel from the UIView. |
Ok, the following works: |
0.5.0-rc includes accessibility improvements: https://github.com/facebook/react-native/releases/tag/v0.5.0-rc Can someone familiar with accessibility report whether the improvements are good enough and open up more specific issues if there are areas that still need to be addressed? |
ping @wesleyahall |
@wesleyahall Any updates on this issue? |
I'm using accessibility features extensively on an app to integrate with KIF for acceptance testing, everything seems to be working well. If you stumble upon this and accessibility tools within React Native aren't currently meeting your needs, please open an issue and let us know what your use cases are! Thanks! |
Movie ListView Example : iOS Accessibility (Screen Reader) is not reading anything, even the plain text elements on the screen. The images are skipped entirely, as if they were background images or something.
Is there a way to get accessibility / screen reader mode activated?
If not, is it planned (soon)?
Or... do I have to go back to cordova?
This is a 100% breaking issue for my company. I guess I was dumb to assume "native" would include accessibility support.
The text was updated successfully, but these errors were encountered: