Whenever I try to make a DisclosureGroup or OutlineGroup on macOS Big Sure beta 6, it crashes at display time. Is anyone else seeing this?
Even the following code crashes:
Even the following code crashes:
Code Block struct ContentView: View { var body: some View { DisclosureGroup( content: { Text("Hello, world!") }, label: { Text("Label") } ) .padding() } }