Answers for "swiftui nacigationbar space not hidden"

1

swiftui navigationview ignore top space

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

navigationbarhidden not working swiftui

NavigationView {
    ScrollView() {
     ......
    }.  
    .navigationBarTitle("") //this must be empty
    .navigationBarHidden(true)
    .navigationBarBackButtonHidden(true)
}
Posted by: Guest on January-23-2021

Code answers related to "swiftui nacigationbar space not hidden"

Code answers related to "Swift"

Browse Popular Code Answers by Language