VariableBlur
VariableBlur copied to clipboard
Allow user interaction with underlying content
The visual effect view blocks interacting with underlying content. For example if you place it at the bottom of the screen to mimic the Journal app's blur, you can't swipe in that area to scroll. To fix set isUserInteractionEnabled = false when the view is init.
This might be a better default but I don't think it's worth changing in a minor update.
In UIKit there's isUserInteractionEnabled = false like you mentioned and in SwiftUI use .allowsHitTesting(false) to achieve the same behavior.