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. NotificationListenerCallback<ScrollNotification>? onScrollNotification,
  14. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  15. ScrollViewKeyboardDismissBehavior keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
  16. String? restorationId,
  17. Clip clipBehavior = Clip.hardEdge,
  18. List<SliverListConfig>? configs,
  19. double preloadExtent = 0,
})

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.onScrollNotification,
  this.dragStartBehavior = DragStartBehavior.start,
  this.keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
  this.restorationId,
  this.clipBehavior = Clip.hardEdge,
  this.configs,
  this.preloadExtent = 0,
}) : super(
        key: key,
      );