.commands {
   CommandMenu("Options") {
      Button("Option 1", systemImage: "1.circle", action: {
         print("This is the option 1")
      })
      Button("Option 2", systemImage: "2.circle", action: {
         print("This is the option 2")
      })
      .keyboardShortcut("A", modifiers: [.shift])
      #if os(macOS)
      .modifierKeyAlternate(.option, {
         Button("Option 3", systemImage: "3.circle", action: {
            print("Alternate Option 3")
         })
      })
      #endif
   }
}