In this lesson we'll create a like button that explodes with hearts. We'll use Animated.parallel
to execute the bouncy heart animation as well as the series of hearts exploding at the same time. Then we'll use an array of Animated.timing
animations and then use Animated.stagger
to make the hearts appear with a 50ms stagger. We use Animated.delay
to wait before we then use Animated.stagger
again to hide the hearts in. Finally our Animated.sequence
will cause each of those animations to happen one after the other.