ste
06/09/2022, 1:18 PMLazyList item so it doesn't get removed when it goes out of bounds? This would allow scrolling when reordering the items in a list (at least looking at my implementation).
I see there are PinnableParent, PinnableParent.PinnedItemsHandle, lazyListPinningModifier, ModifierLocalPinnableParent and so on, but I couldn't find any example.Andrey Kulikov
06/09/2022, 3:00 PMste
06/09/2022, 3:29 PMLazyColumn item downwards. When that item reaches the list bounds, the LazyColumn should scroll to keep the drag alive. However, if we keep dragging (and scrolling) downwards, the LazyList will dispose that item because it thinks it's not visible anymore. So, I was wondering if there was a way to tell the LazyColumn to not dispose that item while it is being dragged.Andrey Kulikov
06/09/2022, 3:51 PMste
06/09/2022, 4:01 PMste
06/09/2022, 4:20 PMAndrey Kulikov
06/09/2022, 4:28 PM