mirror of
https://github.com/metabolist/metatext
synced 2025-01-08 08:03:24 +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))
|
|
}
|
|
}
|
|
}
|