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,
override
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) {
return ClassicalFooterWidget(
key: key,
classicalFooter: this,
loadState: loadState,
pulledExtent: pulledExtent,
loadTriggerPullDistance: loadTriggerPullDistance,
loadIndicatorExtent: loadIndicatorExtent,
axisDirection: axisDirection,
float: float,
completeDuration: completeDuration,
enableInfiniteLoad: enableInfiniteLoad,
success: success,
noMore: noMore,
);
}