mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-04-09 18:53:45 +02:00
Add Async image loading
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
import SwiftUI
|
||||
|
||||
struct ModalDimmingView : View {
|
||||
|
||||
@EnvironmentObject var store: Store<TodoState>
|
||||
|
||||
var body: some View {
|
||||
Color
|
||||
.black
|
||||
.relativeWidth(1.0)
|
||||
.relativeHeight(1.0)
|
||||
.opacity(0.3)
|
||||
.edgesIgnoringSafeArea([.bottom, .top])
|
||||
.transition(.opacity)
|
||||
.tapAction {
|
||||
self.store.dispatch(event: .cancelCreatingItem)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#if DEBUG
|
||||
struct ModalDimmingView_Previews : PreviewProvider {
|
||||
static var previews: some View {
|
||||
ModalDimmingView()
|
||||
}
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user