Given this code :
import SwiftUI struct ContentView : View { var body: some View { VStack(alignment: .leading) { Text(\"Title\")
The simplest way I manage to solve the issue was is by using a ZStack + .edgesIgnoringSafeArea(.all)
struct TestView : View { var body: some View { ZStack() { Color.yellow.edgesIgnoringSafeArea(.all) VStack { Text("Hello World") } } } }