I am using version 1.1.0-alpha05 of Jetpack Compose and I wanted to know if there is a way to turn off the scrolling effect for LazyColumn like xml (android:overScrollMode="never")?
Remove LazyColumn overscroll effect in Jetpack Compose
12.8k Views Asked by Ghasem At
2

You can disable it by providing
LocalOverscrollConfiguration:You can also build it into your theme so that it applies to the entire application:
p.s. in 1.2.0-rc01
LocalOverScrollConfigurationhas being renamed toLocalOverscrollConfiguration