I have a code snippet like the following.
val lazyGridState = rememberLazyGridState()
LaunchedEffect(true){
lazyGridState.scrollToItem(5)
}
In the above code, scrollToItem() and animateScrollToItem() are not working. I need to scroll to particular item in LazyVerticalGrid.