Last active
May 19, 2020 13:43
-
-
Save infinitbility/f1e90bb73fcb4c63ceeca9d8b698c02c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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