react-native-animatable
react-native-animatable copied to clipboard
Stop animating children.
Hello, is this possible to stop doing animation of my children element?
I have rotate animaton on my Buton (TouchableOppacity) component:
const Button = Animatable.createAnimatableComponent(TouchableOpacity);
<Button animation="rotate" iterationCount="infinite" duration={800} onPress={() => this.changeTab(index)} key={index} style={styles.actualTab}><Animatable.Text style={{color: '#fff'}}>{index + 1}</Animatable.Text></Button>
and all working fine, but i want to stop rotate my Text component which is inside my Button component.