Bagaimana cara mengkonfigurasi tombol ContextMenu untuk dihapus dan dinonaktifkan di SwiftUI?
Saya mencoba mengkonfigurasi tombol di contextMenu, tetapi tidak berfungsi. 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 } apa yang...