Place text in freeform container

This commit is contained in:
Gabriel Tofvesson 2024-10-09 06:21:07 +02:00
parent 3bb7a69577
commit f06a979536

View File

@ -5,6 +5,7 @@ local Text = require("gfx.text")
local List = require("gfx.list")
local Event = require("gfx.event")
local Padding = require("gfx.padding")
local Container = require("gfx.container")
local CACHE_FILE = "/.storage.cache"
@ -308,7 +309,16 @@ local PAGES = {
element = title
}
return renderDefault(state, paddedTitle)
local stuffContainer = Container:new{
children = {
paddedTitle
},
width = state.width,
height = state.height,
parent = state.monitor
}
return renderDefault(state, stuffContainer)
end,
REQUEST = function(state, newPage)