deploy: a307f58dfb
This commit is contained in:
@@ -1,6 +1,17 @@
|
||||
# Dropdown : List
|
||||
This is the dropdown class. It is a visual element that can show a list of selectable items in a dropdown menu.
|
||||
|
||||
### Usage
|
||||
```lua
|
||||
local dropdown = main:addDropdown()
|
||||
dropdown:setItems({
|
||||
{text = "Item 1", callback = function() basalt.LOGGER.debug("Item 1 selected") end},
|
||||
{text = "Item 2", callback = function() basalt.LOGGER.debug("Item 2 selected") end},
|
||||
{text = "Item 3", callback = function() basalt.LOGGER.debug("Item 3 selected") end},
|
||||
})
|
||||
```
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
|Property|Type|Default|Description|
|
||||
|
||||
Reference in New Issue
Block a user