আমি বোতামটি কনফিগার করার চেষ্টা করেছি 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
করব তবে এটিকে সুইফটইউতে আনার জন্য আমি কোনও সংশোধক বা কোনও উপায় খুঁজে পাচ্ছি না :
let delete = UIAction(title: "Remove", image: UIImage(systemName: "trash"), attributes: .destructive) { action in
// remove it
}