How do you create a prominent glass button in SwiftUI? In UIKit it’s
let button = UIButton(configuration: .prominentGlass())
button.configuration?.title = "Agree"
I tried
Button("Agree") {}
.buttonStyle(.glassProminent)
but the title text is white not glassified 🤨