mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 07:14:56 +00:00
25 lines
518 B
Lua
25 lines
518 B
Lua
-- Level 2 main content area
|
|
|
|
---@class UIComponent
|
|
---@field type string
|
|
---@field flex? number
|
|
---@field children? UIComponent[]
|
|
|
|
---@class MainLayoutComponent : UIComponent
|
|
---@field type "main"
|
|
---@field flex number
|
|
---@field children UIComponent[]
|
|
|
|
---Renders the main content area with flex layout
|
|
---@param children UIComponent[]?
|
|
---@return MainLayoutComponent
|
|
local function main(children)
|
|
return {
|
|
type = "main",
|
|
flex = 1,
|
|
children = children or {}
|
|
}
|
|
end
|
|
|
|
return main
|