Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/ericlewis/blurview
- Owner: ericlewis
- Created: 2019-08-25T03:38:31.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-19T23:05:20.000Z (over 5 years ago)
- Last Synced: 2024-11-17T17:39:05.605Z (about 2 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))
}
}
}
```