-
Notifications
You must be signed in to change notification settings - Fork 50
Open
Labels
Description
While isInteraction is enabled won't get callbacks InteractionManager.runAfterInteractions. This can be really hard to debug by the way.
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);