i am still struggeling with my chat app. the view ...
# compose-desktop
z
i am still struggeling with my chat app. the view where messages are displayed in Column with with LazyColumn. but i have troubles with the component flickering and updating at strange times. i can't find any good howtos or example for a scroll list with many text components and adding items to it and removing items. or maybe even how to manually control when the component actually redraws. any idea where i can find such info? i am asking here and not in #compose because its different on android.
z
If you’re seeing glitchy behavior on desktop but not Android, please file bugs to compose desktop
s
Some issues I ran into: make sure to set a key, and never have a column with 0 height in a LazyColumn when loading data. Some more specifics might help someone respond more constructively. I've written a desktop app (MUD client) that can lazily draw thousands of lines of text and it's quite responsive. I would look into the amount of work that you're doing for each frame or if you have too many recompositions.
z
@Sean Proctor is it open source? if so can you link to the repo please?