Skip to content

Instantly share code, notes, and snippets.

@iremkaraoglu
Last active March 27, 2022 12:48
Embed
What would you like to do?
Following code renders a Pressable component with a "This is an example" text on it and Accessibility VoiceOver reads it as  "This is an example dimmed button" on iOS.
<Pressable
disabled
accessible={true}
accessibilityRole="button"
accessibilityState={{ disabled: true }}>
<Text> This is an example </Text>
</Pressable>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment