Accessibility group - React Native
In React Native, you can group elements together by using the accessible
prop. An accessibilityLabel
should be set for grouped elements.
Note: all touchable elements are accessible by default.
<View accessible accessibilityLabel="Appt group">
<Text>Appt</Text>
<Text>is a platform for accessibility</Text>
</View>