Animatable プラグインを使用して、アプリ コンポーネントにいくつかのアニメーションを追加しました。
<View style={styles.container}>
<Animatable.View
animation="tada"
duration="1500"
iterationCount={0}
style={styles.logo}>
<Logo />
</Animatable.View>
</View>
animation="tada"
しかし、それがコンポーネントを以下のように継続的に成長させていることがわかりました。
アニメーションを除いてFlippers
、どのアニメーションも成長を止めていません。
これを解決するには?