Skip to content

Layout

A layout to be wrapped in another layout

Name Description
component layout
options see options below

Options

Name Description
id the id or handle of the layout to use
emptyAppBar optional, boolean if true will hide app bar
parameters a map of parameters to pass to the layout, this will be used as data

Example

{
    "component": "layout",
    "options": {
        "id": "foo",
        "parameters": {
            "name": "Homer"
        }
    }
}

-- foo layout
{
    "ux": {
        "component": "text",
        "text": "Hello {data.name}
    }
}