one way: ``` hPanel { b...
# kvision
r
one way:
Copy code
hPanel {
                background = Background(Color.name(Col.BLUE))
                width = 100.perc
                height = 500.px
                add(VPanel {
                    background = Background(Color.name(Col.BEIGE))
                    height = 500.px
                    span("Left")
                }, grow = 1)
                add(VPanel {
                    background = Background(Color.name(Col.GREEN))
                    height = 500.px
                    span("Right")
                }, grow = 4)
            }