mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-14 04:21:01 +00:00
13 lines
305 B
Swift
13 lines
305 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
import ViewModels
|
|
|
|
extension View {
|
|
func alertItem(_ alertItem: Binding<AlertItem?>) -> some View {
|
|
alert(item: alertItem) {
|
|
Alert(title: Text($0.error.localizedDescription))
|
|
}
|
|
}
|
|
}
|