You can use pointerEvents:
<View pointerEvents="none">
...
</View>
This will make the view unresponsive to touch events.
You can use something like
<View pointerEvents={myCondition ? ‘none’ : ‘auto’}>
You can use pointerEvents:
<View pointerEvents="none">
...
</View>
This will make the view unresponsive to touch events.
You can use something like
<View pointerEvents={myCondition ? ‘none’ : ‘auto’}>