iOS 26 Liquid Glass - Without any Blur - Possible?

let glassView = UIVisualEffectView(effect: UIGlassEffect(style: .clear))
glassView.frame = CGRect(x: 100, y: 200, width: 200, height: 400)
self.view.addSubview(glassView)

Though UIGlassEffect has two variants: .regular and .clear, even the clear one has some blur on the background.

Is there a way to do get absolute no blur? Edges still have the glass effect.

Apple does this in two places:

Camera app:

Text magnifier:

iOS 26 Liquid Glass - Without any Blur - Possible?
 
 
Q