This commit is contained in:
ezobnin
2021-08-17 20:44:21 +03:00
parent 4d03f1a79d
commit ddbf4a72e8
3 changed files with 11 additions and 21 deletions

View File

@@ -1,9 +1,14 @@
function on_resume()
local table = {
{"1", "2", "3"},
{"4", "5", "6"},
{"7", "8", "9"},
"1", "20", "30",
"40", "5", "66",
"07", "28", "9",
}
ui:show_table(table, true)
ui:show_table(table, 3, true)
end
function on_click(idx)
ui:show_toast("Cell: "..idx)
end