This was my bumbling attempt at a test using just ...
# tornadofx
d
This was my bumbling attempt at a test using just a Label:
Copy code
class LibraryView: View("Library View"){

    val model:LibrariesViewModel by inject()

  override val root = anchorpane {
        tilepane {
            model.currentLibraryProperty.libraryItems.forEach {
                vbox {
                    label(it.name) 
                    alignment = Pos.TOP_LEFT
                }
            }
            ...