Whether to hide the edge effect. Defaults to
true when called without arguments.Hides the scroll edge bounce or stretch effect.
.scrollEdgeEffectHidden(isHidden?: boolean): Component
true when called without arguments.ScrollView([
ForEach(items, (item) =>
Text(item.name).padding(12)
)
]).scrollEdgeEffectHidden()
ScrollView([
ForEach(items, (item) =>
Text(item.name).padding(12)
)
]).scrollEdgeEffectHidden(false)