Files
aiolauncher_scripts/samples/expandable-sample.lua
2025-01-19 21:04:14 +08:00

10 lines
176 B
Lua

function on_resume()
ui:set_expandable(true)
if ui:is_expanded() then
ui:show_text("Expanded mode")
else
ui:show_text("Standard mode")
end
end