add isWidgetAdded and showDialog functions

This commit is contained in:
Evgeny
2021-07-29 17:16:48 +03:00
parent 43f323105f
commit bb0bdd36a6
3 changed files with 12 additions and 0 deletions

7
dialog_sample.lua Normal file
View File

@@ -0,0 +1,7 @@
function onResume()
ui:showText("Click to open dialog")
end
function onClick()
ui:showDialog("Dialog title", "This is dialog")
end