Düğmeyi içindeki yapılandırmaya çalıştım contextMenu
, ama çalışmıyor.
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
}
neyim var:
Ne arayan kulüpler: ( silme ve çağrı düğmeleri)
UIAction
Aşağıdakine benzer bir şey yaratacağım , UIKit
ancak SwiftUI'ye getirmek için herhangi bir değiştirici veya yine de bulamıyorum :
let delete = UIAction(title: "Remove", image: UIImage(systemName: "trash"), attributes: .destructive) { action in
// remove it
}