a different one: ``` simplePanel { ...
# kvision
r
a different one:
Copy code
simplePanel {
                display = Display.FLEX
                setStyle("flex-direction", "row")
                background = Background(Color.name(Col.BLUE))
                width = 100.perc
                height = 500.px
                vPanel {
                    background = Background(Color.name(Col.BEIGE))
                    width = 20.perc
                    height = 500.px
                    span("Left")
                }
                vPanel {
                    background = Background(Color.name(Col.GREEN))
                    width = 80.perc
                    height = 500.px
                    span("Right")
                }
            }