SplashView.swift 생성 [splashView.swift] import SwiftUI struct SplashView: View { var body: some View { ZStack { Color.blue .edgesIgnoringSafeArea(.all) VStack { Image(systemName: "star.fill") .font(.system(size: 100)) .foregroundColor(.white) Text("스플래시 화면") .font(.title) .foregroundColor(.white) } } } } 메인 화면(View)에서 SplashView를 초기 화면으로 사용 [contentview.swift] struct ContentView: View { @State pr..