17 lines
356 B
Lua
17 lines
356 B
Lua
function on_resume()
|
|
ui:show_text("Open dialog")
|
|
end
|
|
|
|
function on_click()
|
|
dialog_items = { "One", "Two", "Three" }
|
|
ui:show_checkbox_dialog("Title", dialog_items, "Two")
|
|
end
|
|
|
|
function on_dialog_action(idx)
|
|
if idx == -1 then
|
|
ui:show_toast("Dialog cancelled")
|
|
else
|
|
ui:show_toast("Checked: "..dialog_items[idx])
|
|
end
|
|
end
|