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>
);
I'm a beginner learning React Native Animation. If you have time then please help me out in this.
I want to added Animation to MyCustomComponent but its happening can you tell me why so. Thank You.