Fork of Tangara with customizations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
tangara-fw/lib/luavgl/examples/extension.lua

14 lines
301 B

-- demo of external widget added to lvgl. See simulator/extension.c
local extension = lvgl.Extension(nil, {
border_width = 1,
w = lvgl.PCT(20),
h = lvgl.PCT(20),
align = lvgl.ALIGN.CENTER,
})
extension:onClicked(function ()
print("clicked")
end)
print("extension: ", extension)