Start implementation of input component

This commit is contained in:
Insality
2020-04-17 23:27:18 +03:00
parent 1e213a5f30
commit 08e93c7423
3 changed files with 384 additions and 5 deletions

View File

@@ -106,6 +106,12 @@ local function setup_back_handler(self)
end
local function setup_input(self)
local input = self.druid:new_input("input_box", "input_text")
input:set_text("hello!")
end
function M.setup_page(self)
setup_texts(self)
@@ -117,6 +123,7 @@ function M.setup_page(self)
setup_scroll(self)
setup_slider(self)
setup_back_handler(self)
setup_input(self)
end