Implement splash screen functionality
Adds a splash screen to improve the app's initial loading experience.
This commit is contained in:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user