Druid-Extension/example/examples/basic/button/basic_button_double_click.lua

16 lines
302 B
Lua

---@class examples.basic_button_double_click: druid.widget
---@field button druid.button
local M = {}
function M:init()
self.button = self.druid:new_button("button/root", function()
print("Click")
end)
self.button.on_double_click:subscribe(function()
print("Double click")
end)
end
return M