nuxui
GitHub Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

Column

A widget that displays its children in a vertical array.
Full example

layout: {
    widget: ui.Column,
    width: 100px,
    height: 100px,
    background: #303030,
    children:[
        {
            widget: ui.Text,
            width: 100%,
            text: top text,
            background: #ff0000,
        },{
            widget: ui.Text,
            height: 1wt,
            text: bottom text,
            background: #ff00ff,
        },
    ]
}