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.
|
-- 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)
|
|
|