React Native Animation - 图标和应用名称

React Native Animation - Icon and App name

React Native:如何为图像制作动画?即图像应该来自 header 并且名称应该来自 Bottom

你应该参考这个: react-native-animatable

你可以使用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>
  );
}

我做了一个小的snack看那里