Philip Blandford
05/04/2021, 9:40 AMval listState = rememberLazyListState()
LaunchedEffect(itemIdx) {
coroutineScope.launch {
listState.scrollToItem(itemIdx)
}
}
But this has a rather jarring effect, in that you see the thing scroll to position - what I want is for it just to be there ready when the page opensAndrey Kulikov
05/04/2021, 12:27 PM