diff --git a/src/components/RadioButton/RadioButtonItem.tsx b/src/components/RadioButton/RadioButtonItem.tsx index f683992e07..2df8fb33a2 100644 --- a/src/components/RadioButton/RadioButtonItem.tsx +++ b/src/components/RadioButton/RadioButtonItem.tsx @@ -30,6 +30,10 @@ export type Props = { * Function to execute on press. */ onPress?: () => void; + /** + * Accessibility label for the touchable. This is read by the screen reader when the user taps the touchable. + */ + accessibilityLabel?: string; /** * Custom color for unchecked radio. */ @@ -106,6 +110,7 @@ class RadioButtonItem extends React.Component { uncheckedColor, status, theme: { colors }, + accessibilityLabel, } = this.props; return ( @@ -123,6 +128,7 @@ class RadioButtonItem extends React.Component { value, }) } + accessibilityLabel={accessibilityLabel} >