# HG changeset patch # User Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> # Date 1612809202 -3600 # Node ID 0a7cdf17204c8f87c088bbbf6c5a319adc7c4d5f # Parent d3468ac3ecc69b75c5586b2b28a226c14a7c7372 Start Settings view 👨🏻‍🔧 diff -r d3468ac3ecc6 -r 0a7cdf17204c LazyBear.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate Binary file LazyBear.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate has changed diff -r d3468ac3ecc6 -r 0a7cdf17204c lazybear/Views/Settings.swift --- a/lazybear/Views/Settings.swift Mon Feb 08 19:08:53 2021 +0100 +++ b/lazybear/Views/Settings.swift Mon Feb 08 19:33:22 2021 +0100 @@ -9,7 +9,22 @@ struct Settings: View { var body: some View { - Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + NavigationView { + Form { + Section(header: Text("")) { + Label("General", image: "") + Label("Appearance", image: "") + Label("Theme", image: "") + Label("App icon", image: "") + } + + Section(header: Text("")) { + Label("About", image: "") + Label("Rate Lazybear", image: "") + } + } + .navigationBarTitle("Settings", displayMode: .inline) + } } } diff -r d3468ac3ecc6 -r 0a7cdf17204c lazybear/Views/ViewSelector.swift --- a/lazybear/Views/ViewSelector.swift Mon Feb 08 19:08:53 2021 +0100 +++ b/lazybear/Views/ViewSelector.swift Mon Feb 08 19:33:22 2021 +0100 @@ -27,7 +27,7 @@ //message: Text("History will be claered from your device"), buttons: [.cancel(Text("Cancel")) { self.showingActionSheet = false }, .default(Text("Chart & news")) { self.viewSelected = 0 }, - .default(Text("Insider transactions")) { self.viewSelected = 1 } + .default(Text("Insiders")) { self.viewSelected = 1 } ]) return action