Skip to content

Instantly share code, notes, and snippets.

@rutvikbhatt9
Last active January 26, 2021 09:46
Show Gist options
  • Save rutvikbhatt9/5242a89760ac2bb76e93eb7ea0cedddf to your computer and use it in GitHub Desktop.
Save rutvikbhatt9/5242a89760ac2bb76e93eb7ea0cedddf to your computer and use it in GitHub Desktop.
Setting Animated.ScrollView
<Animated.ScrollView
overScrollMode={'never'}
style={{zIndex: 10}}
scrollEventThrottle={16}
onScroll={Animated.event([{
nativeEvent: {contentOffset: {y: this.state.scrollY}},
}], {
listener: (event) => {
},
useNativeDriver: false,
})}>
//child here
</Animated.ScrollView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment