Hi, is LazyColumn supposed to not have an overscro...
# compose
d
Hi, is LazyColumn supposed to not have an overscroll effect?
Tried adding one through a modifier but that doesn't change anything:
Copy code
Modifier.overscroll(rememberOverscrollEffect())
s
It is supposed to have one. Are you perhaps on some old API emulator?
d
I am running it straight on my device, android 15
Actually I'm experiencing this exact thing, there is an overscroll effect when not everything fits on the screen, but there isn't one when everything fits.
s
Well you left out the important detail that the list is not scrollable since it does not have enough items anyway. Then there is no overscroll effect no
d
Oh ok, that makes sense, thank you