Hey guys, I’m writing ChatApp using TornadoFX. On main view I have ChatListView and MessageListView(splitpane), for now the biggest problem is implementation of endless scroll. In android it would’ve taken a few strings but for PC solution is much worse.
I’ve started a topic (available at
https://stackoverflow.com/questions/51862577/endless-scroll-on-listview-with-kotlin-and-tornadofx) and one guy from here helped me with idea and snippet, cheers for him!
But his solution works with cellFactory when I used to use cellFormat with its graphic settings for different kinds of “messages”, and my
data class is completely different as well.
I haven’t found any examples of use cellFactory with CustomUI fragments, can somebody help me with moving on?