模糊视图 (BlurView)

UIVisualEffectView 的 SwiftUI 封装。

使用示例

struct ContentView: View {
    var body: some View {
        VStack {
            Text("Hello World")
            .padding()
            .background(BlurView(style: .systemThinMaterial))
        }
    }
}