EasyScrollList constructor
EasyScrollList({
- Key? key,
- bool isScrollable = false,
- List<
Widget> ? children, - EdgeInsets scrollViewpadding = EdgeInsets.zero,
- dynamic onEndOfPage()?,
- Axis scrollDirection = Axis.vertical,
- ScrollViewKeyboardDismissBehavior keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
- IndexedWidgetBuilder? itemBuilder,
- IndexedWidgetBuilder? separatorBuilder,
- int? itemCount,
- bool shrinkWrap = true,
- Widget? separator,
- ScrollController? scrollController,
- ScrollPhysics? scrollPhysics,
- bool expand = false,
- bool showLoadingSpinnerAtEnd = false,
- CrossAxisAlignment? crossAxisAlignment,
- MainAxisAlignment? mainAxisAlignment,
- 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);