2025-10-27 13:09:10 +11:00
|
|
|
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 18:43:34 +11:00
|
|
|
|
2025-10-27 21:27:50 +11:00
|
|
|
|
2025-10-27 13:09:10 +11:00
|
|
|
end
|
|
|
|
|
|
2025-10-27 15:57:34 +11:00
|
|
|
return plugin
|