var body: some View {
ZStack {
Color.blue
.edgesIgnoringSafeArea([.top, .bottom])
}
}
struct ContentView: View {
var body: some View {
VStack{
Text("Hello, world!")
Text("Hello, world!")
}
}
}