swift ui change background coor code example
Example 1: give background color swiftui
Color.blue.edgesIgnoringSafeArea(.all)
Example 2: how to set the stack color in swiftui
struct ContentView: View {
var body: some View {
ZStack {
Color.red
.edgesIgnoringSafeArea(.all)
}
}
}