DEV Community

Discussion on: Infinite LazyColumn in Jetpack Compose

Collapse
 
kenkyee profile image
Ken Yee • Edited

why isn't
LaunchedEffect(loadMore) {
snapshotFlow { loadMore.value }
.distinctUntilChanged()
.collect {
onLoadMore()
}
}

looking for all true values instead?
i.e. snapshotFlow { loadMore.value }.filter{it}.collect{...}

Collapse
 
quantakt profile image
Quanta

I thought about that too, it looks more explicit and concise to me (assuming it works, about to test it out in a bit)