Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save jacobsapps/8a7a5ecc2fac1c9ba075c581cb9864d6 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 {
UIVisualEffectView(effect: UIBlurEffect(style: .light))
}
func updateUIView(_ view: UIVisualEffectView, context: Context) {
view.effect = UIBlurEffect(style: .light)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment