EasyScrollList constructor

EasyScrollList({
  1. Key? key,
  2. bool isScrollable = false,
  3. List<Widget>? children,
  4. EdgeInsets scrollViewpadding = EdgeInsets.zero,
  5. dynamic onEndOfPage()?,
  6. Axis scrollDirection = Axis.vertical,
  7. ScrollViewKeyboardDismissBehavior keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
  8. IndexedWidgetBuilder? itemBuilder,
  9. IndexedWidgetBuilder? separatorBuilder,
  10. int? itemCount,
  11. bool shrinkWrap = true,
  12. Widget? separator,
  13. ScrollController? scrollController,
  14. ScrollPhysics? scrollPhysics,
  15. bool expand = false,
  16. bool showLoadingSpinnerAtEnd = false,
  17. CrossAxisAlignment? crossAxisAlignment,
  18. MainAxisAlignment? mainAxisAlignment,
  19. Widget? loadingSpinner,
})

Implementation

EasyScrollList({
  Key? key,
  this.isScrollable = false,
  this.children,
  this.scrollViewpadding = EdgeInsets.zero,
  this.onEndOfPage,
  this.scrollDirection = Axis.vertical,
  this.keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
  this.itemBuilder,
  this.separatorBuilder,
  this.itemCount,
  this.shrinkWrap = true,
  this.separator,
  this.scrollController,
  this.scrollPhysics,
  this.expand = false,
  this.showLoadingSpinnerAtEnd = false,
  this.crossAxisAlignment,
  this.mainAxisAlignment,
  this.loadingSpinner,
}) : super(key: key);