Does anyone know why the contextMenu will only appear in dark mode when you put it in the view of a button:
struct ContentView: View {
var body: some View {
Button(action: {
}) {
Text("Button with context menu")
.contextMenu {
Text("Menu Item")
}
}
}
}
Tried this on iOS and iPadOS, in the simulator and on device with os versions 14.4.1, 14.4.2 & 14.5.1. I’m also almost sure, that this wasn’t always the case.

