How to achieve this Avatar glass effect in SwiftUI on iOS26?
I'm trying to achieve the same look as the liquid glass Avatar on iOS 26 in the Contact Detail view of the native Apple Phone or Contacts app. However, the result I get is very different even though the liquid glass is correctly applied.
Button {} label: {
Text(initials)
.font(.system(size: 96, weight: .medium))
.foregroundStyle(.white.opacity(0.95))
.frame(width: 200, height: 200)
.clipShape(Circle())
}
.glassEffect(.clear)
What I want to achieve
What I actually have

