Splash screen above logo

This commit is contained in:
Christophe Deschamps 2026-04-13 15:26:46 +02:00
parent 6c1a1a94f7
commit ff6dbf87b5

View file

@ -27,7 +27,6 @@ struct SplashScreen: View {
Color.white Color.white
.ignoresSafeArea() .ignoresSafeArea()
VStack(spacing: 20) {
Image("linphone") Image("linphone")
.resizable() .resizable()
.renderingMode(.template) .renderingMode(.template)
@ -39,7 +38,6 @@ struct SplashScreen: View {
ProgressView() ProgressView()
} }
} }
}
.frame(maxWidth: .infinity, maxHeight: .infinity) .frame(maxWidth: .infinity, maxHeight: .infinity)
.ignoresSafeArea(.all) .ignoresSafeArea(.all)
} }