Mercurial > public > simoleon
changeset 170:f4e0c414cf6d
minor UI changes
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Thu, 23 Sep 2021 15:14:48 +0200 |
parents | 8c8741785e48 |
children | 70f0625bfcf1 |
files | Simoleon/AboutView.swift Simoleon/ContentView.swift Simoleon/UI/Sidebar.swift |
diffstat | 3 files changed, 7 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- 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") }
--- 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) }
--- 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") }