In LazyColumn, is there a simple way to scroll to ...
# compose
j
In LazyColumn, is there a simple way to scroll to an item based on the key? Or do I have to keep a list of indices somewhere and use that to scroll to specific items?
z
You could look at the layout info’s list of items to find the index for a key and use that to scroll to an index
👍 1
j
Thanks, that works!