Mercurial > public > simoleon
diff Simoleon/ContentView.swift @ 164:b899c1142d9d
Implement AboutView
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Sat, 11 Sep 2021 16:29:38 +0200 |
parents | 0c589138a6f3 |
children | f4e0c414cf6d |
line wrap: on
line diff
--- a/Simoleon/ContentView.swift Sat Sep 11 16:28:44 2021 +0200 +++ b/Simoleon/ContentView.swift Sat Sep 11 16:29:38 2021 +0200 @@ -19,7 +19,7 @@ // MARK: - iPad if UIDevice.current.userInterfaceIdiom == .pad { NavigationView { -// Sidebar() + Sidebar() ConversionView() } } else { @@ -31,17 +31,17 @@ } .tag(Tab.convert) -// FavoritesView() -// .tabItem { -// Label("Favorites", systemImage: "star") -// } -// .tag(Tab.favorites) -// -// SettingsView() -// .tabItem { -// Label("Settings", systemImage: "gear") -// } -// .tag(Tab.settings) + FavoritesView() + .tabItem { + Label("Favorites", systemImage: "star") + } + .tag(Tab.favorites) + + AboutView() + .tabItem { + Label("Settings", systemImage: "gear") + } + .tag(Tab.settings) } } }