Hi everyone, do you notice Lazy Columns do still h...
# compose
a
Hi everyone, do you notice Lazy Columns do still have a lot of jank even now if the layout is fairly complex like a social media card… I ve disabled all animations and I still see jank… I feel its because the paging compose version is on alpha : https://developer.android.com/reference/kotlin/androidx/paging/compose/package-summary
c
Try a release build. There are a lot of optimizations that take place. Another shortcut is to possibly try debuggable = false and that speeds most things up for me in debug builds. There are a bunch of threads on this and the overall reason why seems to be that the entire view system is already precompiled in view-land, but the same is not true in compose-land and so you won't have great speeds in debug builds because of that.