how to switch off in compose LazyColumn overscroll effect like android:overScrollMode="never" for Re...
s
how to switch off in compose LazyColumn overscroll effect like android:overScrollMode="never" for RecyclerView ps. sorry for crossposting from wrong channel "android"
Copy code
CompositionLocalProvider(
    LocalOverScrollConfiguration provides OverScrollConfiguration(
        drawPadding = PaddingValues((-Int.MAX_VALUE).dp)
    )
)
how do you think - is it good idea?
s
You can provide null value
🙌 1