14 lines
341 B
Lua
14 lines
341 B
Lua
local plugin = {}
|
|
|
|
function plugin.run()
|
|
local window = berry.ui.createWindow("test window")
|
|
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)
|
|
|
|
|
|
end
|
|
|
|
return plugin |