From 991a283de963dd82b6d6e044561cffce80167e0b Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Tue, 19 Apr 2022 09:52:23 +0200 Subject: [PATCH] Drop black title from VersionView Clashes with dark background. --- Passepartout/App/iOS/Views/VersionView.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Passepartout/App/iOS/Views/VersionView.swift b/Passepartout/App/iOS/Views/VersionView.swift index eed95975..46c123c7 100644 --- a/Passepartout/App/iOS/Views/VersionView.swift +++ b/Passepartout/App/iOS/Views/VersionView.swift @@ -34,8 +34,7 @@ struct VersionView: View { appName: Unlocalized.appName, versionString: versionString, extraString: L10n.Version.Labels.intro - ).navigationTitle(L10n.Version.title) - .background(themePrimaryBackground) + ).background(themePrimaryBackground) .foregroundColor(themeLightTextColor) } }