mirror of
https://github.com/Insality/druid.git
synced 2025-06-27 18:37:44 +02:00
27 lines
564 B
Lua
27 lines
564 B
Lua
---@class examples.input_password: druid.widget
|
|
---@field root node
|
|
---@field input druid.input
|
|
local M = {}
|
|
|
|
|
|
function M:init()
|
|
self.root = self:get_node("root")
|
|
self.input = self.druid:new_input("input/root", "input/text", gui.KEYBOARD_TYPE_PASSWORD)
|
|
self.input:set_text("")
|
|
|
|
self.input.on_input_unselect:subscribe(function(_, text)
|
|
print(text)
|
|
end)
|
|
end
|
|
|
|
|
|
---@param output_log output_list
|
|
function M:on_example_created(output_log)
|
|
self.input.on_input_unselect:subscribe(function(_, text)
|
|
output_log:add_log_text("Input: " .. text)
|
|
end)
|
|
end
|
|
|
|
|
|
return M
|