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,
},
]
}