Files
aiolauncher_scripts/samples/table-sample.lua
ezobnin ddbf4a72e8 fixes
2021-08-17 20:44:21 +03:00

15 lines
223 B
Lua

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