Files
aiolauncher_scripts/samples/image_sample.lua
2025-04-29 06:59:41 +08:00

19 lines
276 B
Lua

local height = 0
function on_load()
show_image()
end
function on_click()
if height == 0 then
height = 100
else
height = 0
end
show_image()
end
function show_image()
ui:show_image("https://dummyimage.com/600x400/000/fff", height)
end