Nico Smeenk
10/05/2018, 3:42 PMclass Application : App(TestView::class)
class TestView : View() {
private val testProperty = SimpleStringProperty()
override val root = vbox {
textfield (testProperty)
text (testProperty)
}
init {
testProperty.set("abc")
}
}