Examples update

This commit is contained in:
Insality
2021-04-04 13:45:20 +03:00
parent ebabb37761
commit 74a238a6bb
2 changed files with 15 additions and 13 deletions

View File

@@ -79,11 +79,6 @@ local function setup_timer(self)
end
local function setup_back_handler(self)
self.druid:new_back_handler(empty_callback, "back button")
end
local function setup_input(self)
local input = self.druid:new_input("input_box", "input_text")
input:set_text("hello!")
@@ -98,7 +93,6 @@ function init(self)
setup_timer(self)
setup_checkbox(self)
setup_slider(self)
setup_back_handler(self)
setup_input(self)
end