.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")
      })
      .disabled(appData.inputMessage.isEmpty)
   }
}