Files
aiolauncher_scripts/samples/table-sample.lua
2021-08-18 14:16:06 +03:00

15 lines
240 B
Lua

function on_resume()
local table = {
"1", "20", "30",
"40", "5", "66",
"07", "28", "9",
}
ui:show_table(table, 3, true, "Nothing there")
end
function on_click(idx)
ui:show_toast("Cell: "..idx)
end