Created
June 24, 2026 10:13
-
-
Save jacobsapps/c17239d56e02ff30ee967944a9477e82 to your computer and use it in GitHub Desktop.
ProgressiveBlurView from My top 3 design “Kisses” I like to add to every app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| struct ProgressiveBlurView: UIViewRepresentable { | |
| func makeUIView(context: Context) -> UIVisualEffectView { | |
| UIVisualEffectView(effect: UIBlurEffect(style: .systemThinMaterialLight)) | |
| } | |
| func updateUIView(_ view: UIVisualEffectView, context: Context) { | |
| view.effect = UIBlurEffect(style: .systemThinMaterialLight) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment