Email or username:

Password:

Forgot your password?
sam henri gold

btw SwiftUI already has the symbols for a variable blur modifier, they can be found at link time. you just need to add some stubs to the *.swiftinterface files and there you have it, a variable blur one-liner.

@available(iOS 17.0, macOS 14.0, *)
extension SwiftUI.View {
  public func variableBlur(maxRadius: CoreFoundation.CGFloat, mask: SwiftUI.Image, opaque: Swift.Bool) -> some SwiftUI.View
}
SwiftUI preview showing a variable blur effect at the top of a view
2 comments
Evan B🥥ehs

@samhenrigold this is sweet. You should try submitting it to the store, I wonder if you’d get away with it

Go Up