Last updated
sidebar = {
layout = { side = "right" }, -- or "left"
sections = {
{
id = "test_1",
label = "Sidebar Category",
items = {
{
id = "some_option",
label = "Some Option",
image = "assets/logos/bd_100.png",
action = "some_action"
},
{
id = "some_other_option",
label = "Some Other Option",
icon = "fas fa-box",
action = "some_other_action",
submenu = {
{ id = "some_submenu_option_1", label = "Some Submenu Option", on_action = function(data) ... end },
{ id = "some_submenu_option_2", label = "Some Other Submenu Option", on_action = function(data) ... end }
}
}
}
}
}
}layout = { side = "left" } -- or "right"