ExtendedScrollable constructor

const ExtendedScrollable({
  1. Key? key,
  2. AxisDirection axisDirection = AxisDirection.down,
  3. ScrollController? controller,
  4. ScrollPhysics? physics,
  5. required ViewportBuilder viewportBuilder,
  6. ScrollIncrementCalculator? incrementCalculator,
  7. bool excludeFromSemantics = false,
  8. int? semanticChildCount,
  9. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  10. String? restorationId,
  11. ScrollBehavior? scrollBehavior,
  12. bool shouldIgnorePointerWhenScrolling = true,
})

Implementation

const ExtendedScrollable({
  super.key,
  super.axisDirection,
  super.controller,
  super.physics,
  required super.viewportBuilder,
  super.incrementCalculator,
  super.excludeFromSemantics,
  super.semanticChildCount,
  super.dragStartBehavior,
  super.restorationId,
  super.scrollBehavior,
  this.shouldIgnorePointerWhenScrolling = true,
});