Do we have an option of manual storing and restori...
# compose
r
Do we have an option of manual storing and restoring component state like focus, list current index? There is problem when component is rendered conditionally
if(state.loading) {
ShowLoading()
} else {
LazyColumn{}
}
l
Passing your own scrollstate should help. You can create it with
rememberScrollState()