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
While isInteraction is enabled won't get callbacks InteractionManager.runAfterInteractions. This can be really hard to debug by the way.
isInteraction
InteractionManager.runAfterInteractions
Animated.parallel( [color0, color1].map(animatedColor => { return Animated.timing(animatedColor, { toValue: customColors.length, duration: customColors.length * speed, easing: Easing.linear, isInteraction: false, }) }) ) .start(this.startAnimation);
The text was updated successfully, but these errors were encountered:
How about add isInteraction (and other Animated params) to component props?
Sorry, something went wrong.
No branches or pull requests
While
isInteraction
is enabled won't get callbacksInteractionManager.runAfterInteractions
. This can be really hard to debug by the way.The text was updated successfully, but these errors were encountered: