Is there a way to scroll the `LazyColumn` to the s...
# compose
c
Is there a way to scroll the
LazyColumn
to the specified item (via the index of the list?) I want it to be displayed immediately, and or to scroll in animation
m
yes,
LazyListState.scrollToItem
a
it can also initialize the LazyListState with the index you want to be displayed
c
Thank you both. I'm going to try that