Eu tentei configurar o botão no contextMenu
, mas não está funcionando.
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
}
o que eu tenho:
O que estou procurando: ( botões excluir e ligar )
Eu criaria um UIAction
como o seguinte em, UIKit
mas não consigo encontrar nenhum modificador ou mesmo assim para trazer isso para o SwiftUI :
let delete = UIAction(title: "Remove", image: UIImage(systemName: "trash"), attributes: .destructive) { action in
// remove it
}