Vision Pro SwiftUI Transparent Background

How can we make the background of our main view transparent so that we can have additional views inside the main view appear to float?

I have tried setting the background color to Color.clear as well as using glassBackgroundEffect(displayMode: .never) but neither seem to work.

This works for me

WindowGroup {
    ContentView()
}.windowStyle(.plain)

In a build or preview mode (device or simulator) this doesn't work for me in 1.0 -- if I switch over to 1.1 (in the simulator) the background window is removed. Didn't want to move my AVP Device to 1.1 yet. Do you know if this works in 1.0 or only 1.1?

Vision Pro SwiftUI Transparent Background
 
 
Q