Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ericlewis/blurview

SwiftUI wrapper for UIVisualEffectView.
https://github.com/ericlewis/blurview

Last synced: 29 days ago
JSON representation

SwiftUI wrapper for UIVisualEffectView.

Awesome Lists containing this project

README

        

# BlurView

SwiftUI wrapper for UIVisualEffectView.

Example usage:

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