add show_table

This commit is contained in:
Evgeny
2021-08-24 17:27:26 +03:00
parent 699671b2ea
commit 7c1b542fe8
7 changed files with 21 additions and 10 deletions

10
samples/table-sample2.lua Normal file
View File

@@ -0,0 +1,10 @@
function on_resume()
local tab = {
{ "1234567890" },
{ "1", "2", "3" },
{ "4", "5", "6" },
{ "7", "8", "9" },
}
ui:show_table(tab)
end