https://github.com/ericlewis/blurview
SwiftUI wrapper for UIVisualEffectView.
https://github.com/ericlewis/blurview
Last synced: 3 months ago
JSON representation
SwiftUI wrapper for UIVisualEffectView.
- Host: GitHub
- URL: https://github.com/ericlewis/blurview
- Owner: ericlewis
- Created: 2019-08-25T03:38:31.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-19T23:05:20.000Z (almost 6 years ago)
- Last Synced: 2025-03-03T09:16:40.164Z (4 months ago)
- Language: Swift
- Size: 5.86 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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))
}
}
}
```