<Touchable*> or will not work inside an accessible element. Any element that has the accessible={true} property (along with the accessibleLabel property) must therefore not contain any <Touchable*> or elements.
This rule takes no arguments.
<TouchableOpacity
accessibilityTraits="button"
accessibilityComponentType="button"
accessibilityLabel="Tap Me!"
accessible={true}
>
<Text>submit</Text>
<View>
<Text>cancel</Text>
</View>
</TouchableOpacity>
<TouchableOpacity
accessibilityTraits="button"
accessibilityComponentType="button"
accessibilityLabel="Tap Me!"
accessible={true}
>
<View>
<Button />
</View>
</TouchableOpacity>