From 7c5aed8b8cc0ab1fcdf4a0a4af2a38534b7f92f8 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Sat, 3 Dec 2022 07:41:47 +0100 Subject: [PATCH] Integrated the BrowseView view into the ContentView view. --- BeReal/ContentView.swift | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/BeReal/ContentView.swift b/BeReal/ContentView.swift index e9aef05..54fac04 100644 --- a/BeReal/ContentView.swift +++ b/BeReal/ContentView.swift @@ -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() }