Skip to content

Instantly share code, notes, and snippets.

@infinitbility
Last active May 19, 2020 13:43
Show Gist options
  • Save infinitbility/f1e90bb73fcb4c63ceeca9d8b698c02c to your computer and use it in GitHub Desktop.
Save infinitbility/f1e90bb73fcb4c63ceeca9d8b698c02c to your computer and use it in GitHub Desktop.
<ScrollView
showsVerticalScrollIndicator={false}
// define ref
ref={ref => (this.ScrollView = ref)}
// use for store scrolled value
onScroll={event =>
this.setState({horizontalScroll:event.nativeEvent.contentOffset.x, VerticalScroll:event.nativeEvent.contentOffset.y})
}
>
// Your list data
</ScrollView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment