Reputation: 161
Does react native supports mousedown events ? if yes how i can use them ? I have been trying to add it to close a tray when user clicks anywhere on window.
Upvotes: 0
Views: 52
Reputation: 146
Check this out https://reactnative.dev/docs/gesture-responder-system.html[enter link description here]1
<View onStartShouldSetResponder={() => true}
onResponderStart={calledWhenTheTouchStarts}>
<Text>Press Me!</Text>
</View>
Upvotes: 0