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, но это происходит, можете ли вы сказать мне, почему так. Спасибо.