Othman El Jazouli
08/30/2022, 9:29 PMNestedScrollConnection
as part of a collapsable view with LazyColumn work,
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?ste
08/30/2022, 9:53 PMonPostFling
Othman El Jazouli
08/31/2022, 9:19 AM