13 lines
287 B
Swift
13 lines
287 B
Swift
|
// Copyright © 2020 Metabolist. All rights reserved.
|
||
|
|
||
|
import Foundation
|
||
|
import SwiftUI
|
||
|
|
||
|
extension View {
|
||
|
func alertItem(_ alertItem: Binding<AlertItem?>) -> some View {
|
||
|
alert(item: alertItem) {
|
||
|
Alert(title: Text($0.error.localizedDescription))
|
||
|
}
|
||
|
}
|
||
|
}
|