The blur radius in points. Higher values produce a more blurred result. A value of
0 produces no blur.Applies a Gaussian blur effect to a component.
.blur(radius: number)
0 produces no blur.Image({ url: "background.jpg" })
.resizable()
.blur(10)
ZStack([
Image({ url: "photo.jpg" })
.resizable()
.blur(20),
Text("Overlay Text")
.foregroundStyle(Color("white"))
.font("title")
])