github.com/daidehu6831/wails/v2@v2.2.0/pkg/menu/type.go (about)

     1  package menu
     2  
     3  // Type of the menu item
     4  type Type string
     5  
     6  const (
     7  	// TextType is the text menuitem type
     8  	TextType Type = "Text"
     9  	// SeparatorType is the Separator menuitem type
    10  	SeparatorType Type = "Separator"
    11  	// SubmenuType is the Submenu menuitem type
    12  	SubmenuType Type = "Submenu"
    13  	// CheckboxType is the Checkbox menuitem type
    14  	CheckboxType Type = "Checkbox"
    15  	// RadioType is the Radio menuitem type
    16  	RadioType Type = "Radio"
    17  )