We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thanks for this awesome module.
I was using it to drive an animation but it is hurting performance. Is there anyway to use it as we use Animation event drivers - https://medium.com/xebia/linking-animations-to-scroll-position-in-react-native-5c55995f5a6e
This connects to scroll of a scroll view:
const xOffset = new Animated.Value(0); const onScroll = Animated.event([{ nativeEvent: { contentOffset: { x: xOffset } } }], { useNativeDriver: true }); <ScrollView scrollEventThrottle={16} onScroll={onScroll}> // ... </ScrollView>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks for this awesome module.
I was using it to drive an animation but it is hurting performance. Is there anyway to use it as we use Animation event drivers - https://medium.com/xebia/linking-animations-to-scroll-position-in-react-native-5c55995f5a6e
This connects to scroll of a scroll view:
The text was updated successfully, but these errors were encountered: