From ff6dbf87b5f8afb11f3aa308309dae4bd0ffa1a0 Mon Sep 17 00:00:00 2001 From: Christophe Deschamps Date: Mon, 13 Apr 2026 15:26:46 +0200 Subject: [PATCH] Splash screen above logo --- Linphone/SplashScreen.swift | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Linphone/SplashScreen.swift b/Linphone/SplashScreen.swift index 70cdfe092..ee57021e3 100644 --- a/Linphone/SplashScreen.swift +++ b/Linphone/SplashScreen.swift @@ -27,17 +27,15 @@ struct SplashScreen: View { Color.white .ignoresSafeArea() - VStack(spacing: 20) { - Image("linphone") - .resizable() - .renderingMode(.template) - .aspectRatio(contentMode: .fit) - .frame(width: 240, height: 128) - .foregroundColor(ThemeManager.shared.currentTheme.main500) + Image("linphone") + .resizable() + .renderingMode(.template) + .aspectRatio(contentMode: .fit) + .frame(width: 240, height: 128) + .foregroundColor(ThemeManager.shared.currentTheme.main500) - if showSpinner { - ProgressView() - } + if showSpinner { + ProgressView() } } .frame(maxWidth: .infinity, maxHeight: .infinity)