<@U4Z1U6LJK> Can you check if this works: ```clas...
# tornadofx
a
@kastork Can you check if this works:
Copy code
class CustomerForm : View("Register Customer") {
    override val root = form {
        val fieldset = fieldset("Personal Information", FontAwesomeIconView(USER)) {
            val field = field("Name", Orientation.VERTICAL) {
                val textarea = textarea()
                VBox.setVgrow(textarea, Priority.ALWAYS)
            }
            VBox.setVgrow(field, Priority.ALWAYS)
        }
        VBox.setVgrow(fieldset, Priority.ALWAYS)
    }
}