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
delay
Animated.spring()
Works:
Animated.sequence([ Animated.delay(delay), Animated.spring(this.state.slideX, { toValue: 0, bounciness: 5, speed: 8, useNativeDriver: true }) ]).start()
Does not work:
Animated.spring(this.state.slideX, { delay: delay toValue: 0, bounciness: 5, speed: 8, useNativeDriver: true }).start()
Notes:
useNativeDriver
The text was updated successfully, but these errors were encountered:
Yeah this is because animatedjs/animated has not been well maintained and the version of Animated in RN has newer features.
Sorry, something went wrong.
Closing / folding this issue into #716
[change] update the Animated implementation
0dfe319
Replaces the 'animated' package with the latest implementation from React Native. Requires a few imports to be replaced. Close #716 Fix #714 Fix #688
No branches or pull requests
Works:
Does not work:
Notes:
useNativeDriver
has no impact.The text was updated successfully, but these errors were encountered: