For some reason I can't figure out how to make the...
# tornadofx
c
For some reason I can't figure out how to make the rectangle always take up all of the canvas space
r
Does it work if you set vgrow to ALWAYS?
By the way, you could rewrite your view as
Copy code
class ThingView : View("Thingy") {
    override val root = vbox {
        button(graphic = ImageView(Image("OK.png")))
        add(ToolBar())
        button("Meow")
        button("Meww")
    }
}