Files
Berry/plugins/test-plugin/lua/main.lua

14 lines
341 B
Lua
Raw Normal View History

local plugin = {}
2025-10-27 21:27:50 +11:00
function plugin.run()
2025-10-27 20:18:24 +11:00
local window = berry.ui.createWindow("test window")
2025-10-27 21:27:50 +11:00
berry.ui.app.mount(window)
berry.ui.runOnEvent(window.Initialized, function()
local test = berry.ui.createWidget("Static", "the absolute minimal experience")
window.mount_in_window(test)
end)
2025-10-27 21:27:50 +11:00
end
2025-10-27 15:57:34 +11:00
return plugin