cc-mek-scada/pocket/ui/pages/reactor_page.lua

23 lines
517 B
Lua
Raw Normal View History

2023-04-20 01:26:54 +00:00
-- local style = require("pocket.ui.style")
2023-04-16 19:05:28 +00:00
local core = require("graphics.core")
local Div = require("graphics.elements.div")
local TextBox = require("graphics.elements.textbox")
2023-05-07 01:27:36 +00:00
-- local cpair = core.cpair
2023-04-16 19:05:28 +00:00
2023-05-07 01:27:36 +00:00
local TEXT_ALIGN = core.TEXT_ALIGN
2023-04-16 19:05:28 +00:00
-- new reactor page view
---@param root graphics_element parent
local function new_view(root)
local main = Div{parent=root,x=1,y=1}
TextBox{parent=main,text="REACTOR",x=1,y=1,height=1,alignment=TEXT_ALIGN.CENTER}
return main
end
return new_view