Próbowałem skonfigurować przycisk w contextMenu
, ale nie działa.
Text("A label that have context menu")
.contextMenu {
Button(action: {
// remove it
}) {
Text("Remove")
.foregroundColor(.red) // Not working
Image(systemName: "trash")
}.disabled(true) // Not working
}
Co ja mam:
Czego szukam: ( przyciski usuwania i wywoływania )
Chciałbym stworzyć coś UIAction
podobnego do poniższego, UIKit
ale nie mogę znaleźć żadnego modyfikatora ani w żaden sposób, aby przenieść go do SwiftUI :
let delete = UIAction(title: "Remove", image: UIImage(systemName: "trash"), attributes: .destructive) { action in
// remove it
}