Updated for Xcode 14.2
The blur()
modifier lets us apply a real-time Gaussian blur to our views, at a strength of our choosing.
For example, this creates a 300x300 profile picture, then adds a 20-point Gaussian blur:
Image("dog")
.resizable()
.frame(width: 300, height: 300)
.blur(radius: 20)
Download this as an Xcode project
You can blur anything you want, including text views:
Text("Welcome to my SwiftUI app")
.blur(radius: 2)
Download this as an Xcode project
Blurring is extremely efficient, and you can adjust it dynamically just like any other kind of state. For example, this lets you try adjusting the blur of our text dynamically by dragging around a slider:
struct ContentView: View {
@State private var blurAmount = 0.0
var body: some View {
VStack {
Text("Drag the slider to blur me")
.blur(radius: blurAmount)
Slider(value: $blurAmount, in: 0...20)
}
}
}
Download this as an Xcode project
SAVE 50% To celebrate WWDC23, all our books and bundles are half price, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
Link copied to your pasteboard.