Using a `rememberScrollState()` on a `verticalScro...
# compose
r
Using a
rememberScrollState()
on a
verticalScroll
modifier, how do you determine whether the user is scrolling up or down.
isScrollInProgress
isn't very helpful because it only returns a boolean with no information about the direction. With a
RecyclerView
I could easily attach a scroll listener and check if dy is greater than 0.