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) {
return RefreshFooterController(
loadIndicatorExtent: loadIndicatorExtent,
pulledExtent: pulledExtent,
noMore: noMore,
enableInfiniteLoad: enableInfiniteLoad,
mode: loadState,
loadTriggerPullDistance: loadTriggerPullDistance,
loadIndicatorWidget: loadIndicatorWidget,
);
}