CommandGroup (keyboardShortcut) does not work on iPad simulator

The keyboard shortcut does not work on the iPadOS 14 simulator using following the code.

@main
struct DemoApp: App {
    var body: some Scene {
        WindowGroup {
            Text("Demo Keyboard Shotcuts")
        }
        .commands {
            CommandGroup(before: .sidebar) {
                Button("Test Keyboard", action: { print("keyboard shortcut - command + k") })
                    .keyboardShortcut("[")
            }
        }
    }
}


Would you please help us to know what's the problem? From the WWDC session "What's new in SwiftUI", the keyboard shortcut should work on iPad.

Thank you.
I've been beating my head against the table with this too -- it *looks* like it's not yet working in B1 nor B2 for SwiftUI on iPad / Catalyst. Here's hoping for B3!
Same issue here still with Beta 5 ... also not working on my actual iPad Pro 11".
still not working...I don't know it's even marked as available on iOS (iPadOS)
CommandGroup (keyboardShortcut) does not work on iPad simulator
 
 
Q