Billy Newman
06/20/2022, 6:51 PMval listState = rememberLazyListState()
listState.scrollToItem(index)
However I think that is pretty inefficient on first load, or a load with a lot of un-viewed items. Assuming that scrollToItem(index) is loading each item as it scrolls.dorche
06/20/2022, 7:48 PMIan Lake
06/20/2022, 7:55 PMreverseLayout
, which starts you at the bottom and you scroll up to view moreBilly Newman
06/20/2022, 7:58 PM