asdfasdf

I'm trying to implement a toolbar menu shown below as is common in many apps. With VoiceOver the component is unusable because the focus can't be moved and it sometimes jumps away (to "close context menu").

ToolbarItem(placement: .topBarTrailing) {
      Menu {
            Toggle(
                "Cockpit view",
                isOn: $cockpitModeEnabled
            )
            Toggle(
                "POI Observation",
                isOn: $poiWatchEnabled
            )
        } label: {
            Label("Options", systemImage: "ellipsis.circle")
        }
}

I also see weird flickering of the text, getting slightly more gray and then black again (about every second). This happens no matter if VO is enabled or not. What is up with that? Am I doing something wrong?

Thanks for any help!

Building for iOS 18.6+ and testing on an iPhone 15 Pro Max (iOS version 26.5)

asdfasdf
 
 
Q