const MyCustomComponent = Animatable.createAnimatableComponent(Icon);
return(
<View>
<Animatable.Text style={styles.textStyle}>
Made with{' '}
<MyCustomComponent
animation="pulse"
iterationCount="infinite"
name="ios-heart"
style={{ fontSize: 18 }}
color="red"
/>
</Animatable.Text>
</View>
);
我是学习 React Native Animation 的初学者。如果你有时间,请帮我解决这个问题。
我想将动画添加到 MyCustomComponent 但它发生了你能告诉我为什么会这样。谢谢你。