Integrated the BrowseView view into the ContentView view.

This commit is contained in:
Javier Cicchelli 2022-12-03 07:41:47 +01:00
parent f8507d9d00
commit 7c5aed8b8c

View File

@ -11,13 +11,9 @@ import Login
struct ContentView: View { struct ContentView: View {
var body: some View { var body: some View {
VStack { NavigationView {
Image(systemName: "globe") BrowseView()
.imageScale(.large)
.foregroundColor(.accentColor)
Text("Hello, world!")
} }
.padding()
.sheet(isPresented: .constant(true)) { .sheet(isPresented: .constant(true)) {
LoginView() LoginView()
} }