मैंने बटन को अंदर कॉन्फ़िगर करने की कोशिश की 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
}