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
Try putting the NavigationView inside a GeometryReader.
NavigationView
GeometryReader
GeometryReader { NavigationView { Text("Hello World!") } }
I’ve experienced weird behavior when the NavigationView was the root view.