Xcode 12 Beta 5 Menu doesn't open views anymore

This code worked fine in Beta 4, now with Beta 5 the Buttons in Menu don't open the sheets anymore. Bug or has something changed I'm not aware of? Print statements in action are printed in the console. So the Button is functional. Sheet and NavigationLink (in an other view) don't work anymore. Any hints?
Code Block Swift
var body: some View {
        List(menuObjects.menuItems, children: \.menuItems) { menuRow in
            SidebarItem(menuItem: menuRow)
        }
        .navigationTitle("Base Data".localized)
        .listStyle(SidebarListStyle())
        .toolbar {
            Menu {
                Button("Patient".localized, action: {
                    self.showAddPatientView.toggle()
                }).sheet(isPresented: $showAddPatientView) {
                    AddPatientView(isPresented: $showAddPatientView).environment(\.managedObjectContext, moc)
                }
                Button("Contact".localized, action: {
                    self.showAddContactView.toggle()
                }).sheet(isPresented: $showAddContactView) {
                    AddContactView(isPresented: $showAddContactView).environment(\.managedObjectContext, moc)
                }
                Button("Medicament".localized, action: {
                    self.showAddMedicamentView.toggle()
                }).sheet(isPresented: $showAddMedicamentView) {
                    AddMedicamentView(isPresented: $showAddMedicamentView).environment(\.managedObjectContext, moc)
                }
            } label: {
                Label("+", systemImage: "plus")
            }
        }
    }


I am having the same issue.
I am having the same issue too
Does it work if you replace toggle by a forced true ?

Code Block
self.showAddPatientView = true

@Claude31
No, it doesn't. Although, the variable is set to true, via toggle and enforcing it (checked via print statement), the sheet is not shown.
Same issue here. Had to replace Menu with multiple Buttons in a row.
Also some Sheets don't dismiss when closed using a ToolbarItem. It's totally annoying. The behavior changes with every beta.
Issue is still present in Beta 6, I cant find a solution.
Same issue, has anyone figured out a workaround?
Xcode 12 Beta 5 Menu doesn't open views anymore
 
 
Q