ฉันพยายามกำหนดค่าปุ่มในcontextMenu
แต่มันไม่ทำงาน
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
}
สิ่งที่ฉันมี:
สิ่งที่ฉันกำลังค้นหา: ( ลบและปุ่มโทรออก )
ฉันจะสร้างสิ่งUIAction
ต่อไปนี้UIKit
แต่ฉันไม่พบตัวดัดแปลงใด ๆ หรือนำสิ่งนี้ไปยังSwiftUI :
let delete = UIAction(title: "Remove", image: UIImage(systemName: "trash"), attributes: .destructive) { action in
// remove it
}