Swift Ui Navigation View borders cut off

Hey, I am new to swift ui and ran into the problem, where the preview looks different than the actual app. Every time I use Navigation View the upper and the lower end of the screen are cut off (all black). Can somebody help with that?

struct ContentView : View {
    var body: some View {
        NavigationView {
            ZStack {
                Color.red.edgesIgnoringSafeArea(.all)
                ScrollView {
                    Text("Example")
                }
                .navigationBarTitle("title")
            }
        }
    }
}

Edit: Somehow won't let me add the screenshot :(

Looks okay here...

Can you say anything more about the issue you are seeing?

I am running simulation on iPhone 11Pro (Same on 14) and the back button (when using navigation links) is pushed down a fourth of the screen (everything above is black) and the bottom fourth is just cut

Swift Ui Navigation View borders cut off
 
 
Q