LoadingMoreCustomScrollView constructor

const LoadingMoreCustomScrollView({
  1. Key? key,
  2. Axis scrollDirection = Axis.vertical,
  3. bool reverse = false,
  4. ScrollController? controller,
  5. bool? primary,
  6. ScrollPhysics? physics,
  7. bool shrinkWrap = false,
  8. double? cacheExtent,
  9. List<Widget> slivers = const <Widget>[],
  10. int? semanticChildCount,
  11. bool showGlowLeading = true,
  12. bool showGlowTrailing = true,
  13. bool rebuildCustomScrollView = false,
  14. NotificationListenerCallback<ScrollNotification>? onScrollNotification,
  15. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  16. ScrollViewKeyboardDismissBehavior keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
  17. String? restorationId,
  18. Clip clipBehavior = Clip.hardEdge,
})

Implementation

const LoadingMoreCustomScrollView({
  Key? key,
  this.scrollDirection = Axis.vertical,
  this.reverse = false,
  this.controller,
  this.primary,
  this.physics,
  this.shrinkWrap = false,
  this.cacheExtent,
  this.slivers = const <Widget>[],
  this.semanticChildCount,
  this.showGlowLeading = true,
  this.showGlowTrailing = true,
  this.rebuildCustomScrollView = false,
  this.onScrollNotification,
  this.dragStartBehavior = DragStartBehavior.start,
  this.keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
  this.restorationId,
  this.clipBehavior = Clip.hardEdge,
})  :
      super(
        key: key,
      );