The accessibilityComponentType property is essentially the android version of accessibilityTraits and is used to alert a user, using TalkBack, what kind of element they have selected.
Values may be one of the following:
"none"
"button"
"radiobutton_checked"
"radiobutton_unchecked"
This rule takes no arguments.
<TouchableOpacity accessibilityComponentType="button" />
<TouchableOpacity accessibilityComponentType="primary-button" />