Large overlay

It seems an overlay is limited to the size of the base view. How to remove the limit?

baseView.overlay {overlayView}

Use a ZStack instead of overlay

ZStack {
    Text("Hello, world!")
        .padding()
    Rectangle()
        .fill(.red)
}
Large overlay
 
 
Q