Skip to main content
Logo Appt Light

Accessibility hint on React Native

An accessibility hint helps users to understand what will happen after performing an action. Accessibility hints are announced by the screen reader. Keep in mind that users can turn off accessibility hints. You should therefore not rely on accessibility hints as the sole indicator of what happens. You should also avoid information duplication, e.g. avoid telling users that they can 'double tap to activate'.

In React Native you can set an accessibility hint by using the accessibilityHint prop.

<Pressable
  accessibilityHint="Opens the Appt website"
/>

Feedback?

Let us know!