mirror of
https://github.com/metabolist/metatext
synced 2024-12-20 14:32:48 +01:00
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))
|
|
}
|
|
}
|
|
}
|