add ui:show_table

This commit is contained in:
ezobnin
2021-08-17 15:42:36 +03:00
parent 8776e17f91
commit 4d03f1a79d
3 changed files with 25 additions and 1 deletions

9
samples/table-sample.lua Normal file
View File

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