LocalOverscrollConfiguration
Property
Android
Deprecated Providing
OverscrollConfiguration
throughLocalOverscrollConfiguration
to disable / configure overscroll has been replaced withLocalOverscrollFactory
andrememberPlatformOverscrollFactory
. To disable overscroll, instead ofLocalOverscrollConfiguration provides null
, useLocalOverscrollFactory provides null
. To change the glow color / padding, instead ofLocalOverscrollConfiguration provides OverscrollConfiguration(myColor, myPadding)
, useLocalOverscrollFactory provides rememberPlatformOverscrollFactory(myColor, myPadding)
@ExperimentalFoundationApi
val LocalOverscrollConfiguration =
compositionLocalOf<OverscrollConfiguration?> { OverscrollConfiguration() }
Composition local to provide configuration for scrolling containers down the hierarchy. null
means there will be no overscroll at all.