Answers for "swiftui navigationview without navigation bar"

2

navigationview hide header swiftui

.navigationBarHidden(true)
.navigationBarTitle(Text("Home"))
.edgesIgnoringSafeArea([.top, .bottom])
Posted by: Guest on October-06-2020
1

swiftui navigationview ignore top space

NavigationView {
    FileBrowserView(jsonFromCall: URLRetrieve(URLtoFetch: applicationDelegate.apiURL))
        .navigationBarTitle("")
        .navigationBarHidden(true)
}
Posted by: Guest on July-26-2020

Code answers related to "swiftui navigationview without navigation bar"

Code answers related to "Swift"

Browse Popular Code Answers by Language