0

I used Animatable plugin to add some animations to my app components.

<View style={styles.container}>
     <Animatable.View
        animation="tada"
        duration="1500"
        iterationCount={0}
        style={styles.logo}>
          <Logo />
     </Animatable.View>
</View>

But i found that animation="tada" is making the component growing continuosly as below.
except Flippers animation none of the animations are stopping from growing.

How to solve this ?

enter image description here

1 Answers1

0

I found the problem because I did the same mistake in past.

duration="1500"

should be changed to

duration={1500}
Vikas Acharya
  • 3,550
  • 4
  • 19
  • 52