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 {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundColor(.accentColor)
Text("Hello, world!")
NavigationView {
BrowseView()
}
.padding()
.sheet(isPresented: .constant(true)) {
LoginView()
}