Нет описания

hello-wave.tsx 405B

1234567891011121314151617181920
  1. import Animated from 'react-native-reanimated';
  2. export function HelloWave() {
  3. return (
  4. <Animated.Text
  5. style={{
  6. fontSize: 28,
  7. lineHeight: 32,
  8. marginTop: -6,
  9. animationName: {
  10. '50%': { transform: [{ rotate: '25deg' }] },
  11. },
  12. animationIterationCount: 4,
  13. animationDuration: '300ms',
  14. }}>
  15. 👋
  16. </Animated.Text>
  17. );
  18. }