React Native - 26.01.20 ๊ธฐ์ค ์ต์ Components, API
ยท
๐ธ React Native
โ
Deprecated๋ ComponentAppLoading -> SplashScreenimport { Text, View } from 'react-native';import Entypo from '@expo/vector-icons/Entypo';import * as SplashScreen from 'expo-splash-screen';// Set the animation options. This is optional.SplashScreen.setOptions({ duration: 1000, fade: true,});export default function App() { return ( SplashScreen Demo! ๐ );} import * as Sp..