Splash screen — loading screen shown at app startup.
Using react-native-splash-screen:
1npm install react-native-splash-screen
Setup:
1import SplashScreen from 'react-native-splash-screen';23function App() {4 useEffect(() => {5 // Hide after initialization6 SplashScreen.hide();7 }, []);89 return <MainApp />;10}
With Expo:
1// app.json2{3 "expo": {4 "splash": {5 "image": "./assets/splash.png",6 "resizeMode": "contain",7 "backgroundColor": "#ffffff"8 }9 }10}
Best practices: