Skip to content

Instantly share code, notes, and snippets.

@benmotyka
Created February 12, 2023 23:12
Show Gist options
  • Save benmotyka/f1bc89261d9f5b46c90195aece2b759a to your computer and use it in GitHub Desktop.
Save benmotyka/f1bc89261d9f5b46c90195aece2b759a to your computer and use it in GitHub Desktop.
React Native check if user swiped
<View
onTouchStart={e=> this.touchY = e.nativeEvent.pageY}
onTouchEnd={e => {
if (this.touchY - e.nativeEvent.pageY > 20)
console.log('Swiped up')
}}
style={{height: 300, backgroundColor: '#ccc'}}
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment