hey guys, is it possible to obtain LazyColumn scro...
# compose
f
hey guys, is it possible to obtain LazyColumn scroll value just as we would have on Column with scroll using
rememberScrollState
?
f
There is rememberLazyColumnState or something of the sort
And it has firstVisibleItemIndex and scrollOffset
f
Copy code
/**
 * The holder class for the current scroll position.
 */
    private val scrollPosition =
        LazyListScrollPosition(firstVisibleItemIndex, firstVisibleItemScrollOffset)
it’s private đŸ˜…