This is an iOS only issue and works fine on Android.
I have a view component like so:
<RX.View
importantForAccessibility={RX.Types.ImportantForAccessibility.Yes}
accessibilityLabel={"accessibility label"}>
<RX.Text
importantForAccessibility={RX.Types.ImportantForAccessibility.NoHideDescendants} >text 1</RX.Text>
<RX.Text
importantForAccessibility={RX.Types.ImportantForAccessibility.NoHideDescendants} >text 2</RX.Text>
</RX.View>
The expected behavior should be "accessibility label" gets read out from screen reader. However, on iOS, only "text 1" and "text 2" can be read out.
This is an iOS only issue and works fine on Android.
I have a view component like so:
The expected behavior should be "accessibility label" gets read out from screen reader. However, on iOS, only "text 1" and "text 2" can be read out.