react-native-animatable icon indicating copy to clipboard operation
react-native-animatable copied to clipboard

Stop animating children.

Open m4rc1nn opened this issue 3 years ago • 0 comments

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.

m4rc1nn avatar Sep 19 '21 21:09 m4rc1nn