From cfab1c12f175c3a4e7ef1c69812c4f5efe7562b8 Mon Sep 17 00:00:00 2001 From: Matte23 Date: Tue, 22 Dec 2020 11:32:52 +0100 Subject: [PATCH] Fix dark mode for LaunchScreen.storyboard --- ios/circolapp/circolapp/LaunchScreen.storyboard | 16 ++++++++++------ ios/circolapp/circolapp/View/PhoneView.swift | 2 +- ios/circolapp/circolapp/View/SidebarView.swift | 2 +- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/ios/circolapp/circolapp/LaunchScreen.storyboard b/ios/circolapp/circolapp/LaunchScreen.storyboard index 5959daf..47b6d8c 100644 --- a/ios/circolapp/circolapp/LaunchScreen.storyboard +++ b/ios/circolapp/circolapp/LaunchScreen.storyboard @@ -5,6 +5,7 @@ + @@ -12,15 +13,15 @@ - + - + - + @@ -31,8 +32,8 @@ - - + + @@ -43,7 +44,7 @@ - + @@ -67,5 +68,8 @@ + + + diff --git a/ios/circolapp/circolapp/View/PhoneView.swift b/ios/circolapp/circolapp/View/PhoneView.swift index 9b3fed3..18c7ff6 100644 --- a/ios/circolapp/circolapp/View/PhoneView.swift +++ b/ios/circolapp/circolapp/View/PhoneView.swift @@ -51,7 +51,7 @@ struct PhoneView: View { SettingsView() } .tabItem { - Image(systemName: "gearshape.fill") + Image(systemName: "gear") Text("Settings") } }.sheet(isPresented: self.$showOnboarding, onDismiss: { diff --git a/ios/circolapp/circolapp/View/SidebarView.swift b/ios/circolapp/circolapp/View/SidebarView.swift index e3be3bc..8723df9 100644 --- a/ios/circolapp/circolapp/View/SidebarView.swift +++ b/ios/circolapp/circolapp/View/SidebarView.swift @@ -50,7 +50,7 @@ struct SidebarView: View { tag: Screen.settings, selection: $state, label: { - Label("Settings", systemImage: "gearshape") + Label("Settings", systemImage: "gear") }) } .listStyle(SidebarListStyle())