hey folks, I’m using `NestedScrollConnection` as p...
# compose
o
hey folks, I’m using
NestedScrollConnection
as part of a collapsable view with LazyColumn work,
Copy code
Box(
        modifier = Modifier
            .fillMaxSize()
            .nestedScroll(nestedScrollConnection)
    ) {
        LazyColumn ..

        CollapsingView..
    }
the idea is I want to get notified when user stops scrolling + they no longer interact with view,
onPostScroll
unfortunately is fired when scrolling stops regardless if I still have my finger down, any idea if there is a workaround?
1
s
You should check out
onPostFling
o
yep that’s it! thank you @ste!