Skip to main content
Logo Appt Light

Accessibility group on React Native

It is easier and quicker for users of assistive technologies to interact with grouped elements. Grouping elements into a single control makes things clearer, simplifies interactions, and provides larger touch targets.

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>

Feedback?

Let us know!