Does anyone know of a good way to have a list of r...
# tornadofx
k
Does anyone know of a good way to have a list of rich text elements that support selecting and copying? This is what I have right now, but I can’t select the text:
Copy code
var myList = listOf(
        TextFlow(Text("giant rich text blob")),
        TextFlow(Text("another one"))
).observable()

override val root = listview(myList)