-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Make ASEditableTextNode accessible to VoiceOver #1162
Make ASEditableTextNode accessible to VoiceOver #1162
Conversation
@ay8s Could we try implement the accessibility methods within ASEditableTextNode:
Not sure if this is the right approach yet, but we would make the |
@maicki Tried a couple of approaches with this. Making the ASEditableTextNode a container with isAccessibilityElement true, doesn't get it picked up as we don't collect the UIAccessibilityElements for non layerBacked nodes and only add the subnodes view to the array. With isAccessibilityElement set to false we get the same outcome where only the subnodes view is added to the array. |
On it @maicki |
… task/editableTextNodeAccessibilityFix # Conflicts: # CHANGELOG.md
Working now @maicki. 👍 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ay8s Thanks again for working on this. After the requested change let's get it in and sorry for the late response.
… task/editableTextNodeAccessibilityFix
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ay8s Thanks for working on this!
Should resolve issues seen in #1135 where VoiceOver is unable to access the text view and correctly read out the value while inputting text.