How to remove the default Navigation Bar space in SwiftUI NavigiationView
I am new to SwiftUI (like most people) and trying to figure out how to remove some whitespace above a List that I embedded in a NavigationView In this image, you can see that there is some white space above the List What I want to accomplish is this I've tried using .navigationBarHidden(true) but this did not make any noticeable changes. i'm currently setting up my navigiationView like this NavigationView { FileBrowserView(jsonFromCall: URLRetrieve(URLtoFetch: applicationDelegate.apiURL)) .navigationBarHidden(true) } where FileBrowserView is a view with a List and Cells defined like this List