Caudatus's Sakura Story

[Expo]Expo splash screen 본문

DEVELOPMENT/React Native

[Expo]Expo splash screen

코다투스 2024. 8. 11. 18:43

expo에서 splash screen를 만들기 위해 expo-splash-screen을 사용해 보았습니다.

 

모처럼 Expo를 사용하기 때문에 Expo의 스플래쉬 스크린 api를 써봤는데 사용하기도 간편하고 좋았습니다.

 

아래같은 건데

https://docs.expo.dev/static/videos/tutorial/splash-add.mp4

 

app.json파일에 들어가서 아래같이 수정하고 "image": 여기에 원하는 파일 위치 잡아주면 끝!

{
  "splash": {
    "image": "./assets/splash.png",
    "resizeMode": "contain",
    "backgroundColor": "#25292e" 
  }
}

 

 

 

참고: https://docs.expo.dev/tutorial/configuration/

 

Configure status bar, splash screen and app icon

In this tutorial, learn the basics of how to configure a status bar, splash screen and app icon.

docs.expo.dev