SwiftUI Navbar on VisionOS like the photos app?

The Photos app on VisionOS does not apply a blurry navigation bar background to the top of the photos views. Instead if has a transparent navigation bar with some stylized floating buttons.

How can I mimic this in my own SwiftUI VisionOS app?

let customNavBarAppearance = UINavigationBarAppearance()
customNavBarAppearance.configureWithTransparentBackground()

Using a transparent navigation bar should do the trick.

SwiftUI Navbar on VisionOS like the photos app?
 
 
Q