# HG changeset patch # User Dennis Concepcion Martin # Date 1632402888 -7200 # Node ID f4e0c414cf6d03a4c6331da272cf50666000b18b # Parent 8c8741785e48a8e81fc3e0bb2e6ff7ba2b772fe9 minor UI changes diff -r 8c8741785e48 -r f4e0c414cf6d Simoleon/AboutView.swift --- a/Simoleon/AboutView.swift Thu Sep 23 15:14:35 2021 +0200 +++ b/Simoleon/AboutView.swift Thu Sep 23 15:14:48 2021 +0200 @@ -10,7 +10,7 @@ struct AboutView: View { var body: some View { Form { - Section(header: Text("Stay in touch")) { + Section(header: Text("Feedback")) { Link(destination: URL(string: "https://itunes.apple.com/app/id1576390953?action=write-review")!) { HStack { Image(systemName: "heart.fill") @@ -20,7 +20,9 @@ Text("Rate Simoleon") } } - + } + + Section(header: Text("Stay in touch")) { Link(destination: URL(string: "https://twitter.com/dennisconcep")!) { HStack { Image("TwitterLogo") @@ -42,7 +44,7 @@ } } - Section(header: Text("About")) { + Section(header: Text("Information")) { Link(destination: URL(string: "https://dennistech.io")!) { Text("Website") } diff -r 8c8741785e48 -r f4e0c414cf6d Simoleon/ContentView.swift --- a/Simoleon/ContentView.swift Thu Sep 23 15:14:35 2021 +0200 +++ b/Simoleon/ContentView.swift Thu Sep 23 15:14:48 2021 +0200 @@ -39,7 +39,7 @@ AboutView() .tabItem { - Label("Settings", systemImage: "gear") + Label("About", systemImage: "info.circle") } .tag(Tab.settings) } diff -r 8c8741785e48 -r f4e0c414cf6d Simoleon/UI/Sidebar.swift --- a/Simoleon/UI/Sidebar.swift Thu Sep 23 15:14:35 2021 +0200 +++ b/Simoleon/UI/Sidebar.swift Thu Sep 23 15:14:48 2021 +0200 @@ -21,7 +21,7 @@ .accessibilityIdentifier("NavigateToFavorites") NavigationLink(destination: AboutView()) { - Label("About", systemImage: "gear") + Label("About", systemImage: "info.circle") } .accessibilityIdentifier("NavigateToSettings") }