/**
* Created by User on 2017/3/22.
*/
Demo.FlowLayout = BI.inherit(BI.Widget, {
props: {
baseCls: "demo-flow"
},
render: function () {
return {
type: "bi.center_adapt",
items: [{
type: "bi.left",
type: "bi.label",
height: 30,
text: "Left-1",
cls: "layout-bg1",
hgap: 20
}, {
text: "Left-2",
cls: "layout-bg2",
text: "Left-3",
cls: "layout-bg3",
text: "Left-4",
cls: "layout-bg4",
text: "Left-5",
cls: "layout-bg5",
}],
hgap: 20,
vgap: 20
type: "bi.right",
text: "Right-1",
text: "Right-2",
text: "Right-3",
text: "Right-4",
text: "Right-5",
}]
}
});
BI.shortcut("demo.flow", Demo.FlowLayout);