Archie
05/18/2026, 3:41 PMLazyColumn.
If I scroll to the bottom of the list, remove a few items at the bottom and let the LazyColumn animate the changes, the upcoming items that were previous out of bounds does not animate.
For example in this attached recording, "Test15" to "Test20", the items were animating in place, but items "Test10" to "Test14" which were previously out of bounds just instantly shown in place.
Anyone have any idea how to properly fix the animation in this case? I expected the items "Test10" to "Test14" to also animate down from the top like "Test15" to "Test20". Is there anyway to achieve that or is this a current LazyColumn limitation?
Thanks in advanceJonathan
05/18/2026, 3:43 PMArchie
05/19/2026, 5:32 AMAlexander Maryanovsky
05/22/2026, 3:57 PMval cacheWindow = remember {
LazyLayoutCacheWindow(
aheadFraction = 1f,
behindFraction = 1f
)
}
val listState = rememberLazyListState(cacheWindow = cacheWindow)
let us know if it works 🙂Archie
05/25/2026, 2:47 PM