ursus
07/15/2025, 11:46 PMLazyColumn
do a “double step” scroll when calling animateScrollToItem (0)
? I would expect one smooth scroll like recycler used to do.Seri
07/16/2025, 2:47 PMSeri
07/16/2025, 4:32 PMLazyColumn.items(...)
call? By default, LazyColumn tries to key the content by its index in the list but this approach isn't always appropriate.
Since you're inserting new data into the top of the list, the list indexes become unstable and you need to supply a unique ID here.
https://developer.android.com/develop/ui/compose/lists#item-keysursus
07/16/2025, 10:25 PM