How can you add Nodes to the VIew/Fragment dynamic...
# tornadofx
a
How can you add Nodes to the VIew/Fragment dynamically?
it.root.getChildList()?.add(Label("Test"))
seems to work (in console output with println), but I do not observe any changes
nevermind, it's just an issue with order of calls, i.e.
Copy code
val view = SomeView()
<do insert here>
val stage = view.openWindow()!!
<not here>
stage.show()