Layout
Row.create(c)
.child(...)
.child(...)
.build();Column.create(c)
.child(...)
.child(...)
.build();Row.create(c)
.child(
SolidColor.create(c)
.color(RED)
.flexGrow(1))
.child(
SolidColor.create(c)
.color(BLUE)
.flexGrow(1))
.build();Last updated