[React Native] Animation
1. XY Animation 1) 기본 import React, { Component } from 'react'; import { View, Text, StyleSheet } from 'react-native'; import AnimOne from './src/Animation01' class App extends Component { render() { return ( ) } }; const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#FFF' } }); export default App; import React, { Component } from 'react'; import { View, Text, StyleSheet, ..
2021.01.04