Kevin
09/13/2018, 6:46 AMmyList
still has all the same references, so from the observability standpoint it hasn't changed, so I need to tell it to refresh somehow.
var myList = mutableListOf<MutableThing>().observable()
override val root = vbox {
lv = listview(myList)
button {
action {
myList.forEach { mutate(it) }
lv.refresh()
}
}
}