How do I show a #SwiftUI confirmation dialog from "within” a menu like so but not in a toolbar?
Menu {
Button {
…
}
}
.confirmationDialog {
…
}
presents the dialog as a popover pointing at the close menu and
Menu {
Button {
…
}
.confirmationDialog {
…
}
}
doesn't work at all?
