contentBuilder method
Widget
contentBuilder(
- BuildContext context,
- LoadMode loadState,
- double pulledExtent,
- double loadTriggerPullDistance,
- double loadIndicatorExtent,
- AxisDirection axisDirection,
- bool float,
- Duration? completeDuration,
- bool enableInfiniteLoad,
- bool success,
- bool noMore,
Implementation
@override
Widget contentBuilder(
BuildContext context,
LoadMode loadState,
double pulledExtent,
double loadTriggerPullDistance,
double loadIndicatorExtent,
AxisDirection axisDirection,
bool float,
Duration? completeDuration,
bool enableInfiniteLoad,
bool success,
bool noMore) {
assert(axisDirection == AxisDirection.down || axisDirection == AxisDirection.up,
'Widget cannot be horizontal');
linkNotifier.contentBuilder(context, loadState, pulledExtent, loadTriggerPullDistance,
loadIndicatorExtent, axisDirection, float, completeDuration, enableInfiniteLoad, success, noMore);
return NextPageFooterWidget(
key: key,
color: color,
backgroundColor: backgroundColor,
linkNotifier: linkNotifier,
);
}