Traté de configurar el botón en el contextMenu
, pero no funciona.
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
}
lo que tengo:
Lo que estoy buscando: ( eliminar y llamar botones)
Crearía algo UIAction
similar a lo siguiente, UIKit
pero no puedo encontrar ningún modificador o de todos modos para llevar esto a SwiftUI :
let delete = UIAction(title: "Remove", image: UIImage(systemName: "trash"), attributes: .destructive) { action in
// remove it
}