1

React Native: How do you animate the Image? i.e Image should Come from header and name should come from Bottom

Bhojani Asgar
  • 93
  • 1
  • 10

2 Answers2

1

you should refer this: react-native-animatable

Tim
  • 320
  • 1
  • 10
1

you can use react-native-animatable

export default function App() {
  return (
  <View style={styles.container}>
    
    <Animatable.Text animation="slideInDown"  iterationCount={1} direction="alternate">Up and down you go</Animatable.Text>
    <Animatable.Image 
    animation="slideInUp" easing="ease-out" iterationCount={1}     source={require('/assets/snack-icon.png')}/>
  </View>
  );
}

I made a small snack Look there

Yoel
  • 7,555
  • 6
  • 27
  • 59