<@UB598EG6L> try to go from here: ``` class Applic...
# tornadofx
n
@Hullaballoonatic try to go from here:
Copy code
class Application : App(TestView::class)

class TestView : View() {
    private val testProperty = SimpleStringProperty()

    override val root = vbox {
        textfield (testProperty)
        text (testProperty)
    }

    init {
        testProperty.set("abc")
    }
}
😄 1