Skip to content

Instantly share code, notes, and snippets.

@jacobsapps
Created June 24, 2026 10:13
Show Gist options
  • Select an option

  • Save jacobsapps/8d0b8f29991cf5261a2c4bf00faf932b to your computer and use it in GitHub Desktop.

Select an option

Save jacobsapps/8d0b8f29991cf5261a2c4bf00faf932b to your computer and use it in GitHub Desktop.
ProgressiveBlurView from My top 3 design “Kisses” I like to add to every app
struct ProgressiveBlurView: UIViewRepresentable {
func makeUIView(context: Context) -> UIVisualEffectView {
VariableBlurUIView(effect: UIBlurEffect(style: .light))
}
func updateUIView(_ view: UIVisualEffectView, context: Context) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment