over Scroll Out Of Bound
fun Modifier.overScrollOutOfBound(isVertical: Boolean = true, nestedScrollToParent: Boolean = true, scrollEasing: (distance: Float, range: Int) -> Float?, springStiff: Float = OutBoundSpringStiff, springDamp: Float = OutBoundSpringDamp, isEnabled: () -> Boolean = { platform() == Platform.Android || platform() == Platform.IOS }): Modifier
Overscroll effect when scrolling to the boundary.
Parameters
is Vertical
Whether the overscroll effect is vertical or horizontal.
nested Scroll To Parent
Whether to dispatch nested scroll events to parent.
scroll Easing
Easing function for overscroll effect, default is a parabolic easing.
spring Stiff
springStiff for overscroll effect,generally do not need to set.
spring Damp
springDamp for overscroll effect,generally do not need to set.
is Enabled
Whether the overscroll effect is enabled. Default is enabled on Android and iOS only.