Implement splash screen functionality

Adds a splash screen to improve the app's initial loading experience.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-16 12:18:48 +00:00
parent 017f5615c1
commit 0e714af410
8 changed files with 41 additions and 8 deletions

View File

@@ -11,10 +11,12 @@ const config: CapacitorConfig = {
},
plugins: {
SplashScreen: {
launchShowDuration: 2000,
backgroundColor: "#f2f2f2",
launchShowDuration: 3000, // 스플래시 화면 표시 시간 3초로 증가
backgroundColor: "#F0F4F8", // 배경색 밝은 회색으로 변경
androidScaleType: "CENTER_CROP",
showSpinner: false
showSpinner: true, // 로딩 스피너 표시
spinnerColor: "#6BCB77", // 스피너 색상 (브랜드 색상)
androidSpinnerStyle: "large" // 안드로이드 스피너 크기
},
Keyboard: {
resize: "body",