This will work in new version (new parameter `noWr...
# kvision
r
This will work in new version (new parameter
noWrappers
):
Copy code
hPanel(noWrappers = true) {
                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")
                }
            }