CustomFooter constructor

const CustomFooter({
  1. Key? key,
  2. required FooterBuilder builder,
  3. OffsetCallback? onOffsetChange,
  4. ModeChangeCallback<LoadStatus>? onModeChange,
  5. AsyncVoidCallback? readyLoading,
  6. AsyncVoidCallback? endLoading,
  7. double height = 60.0,
  8. LoadStyle loadStyle = LoadStyle.showAlways,
  9. VoidCallback? onClick,
})

构造函数

Implementation

const CustomFooter({
  super.key,
  required this.builder,
  this.onOffsetChange,
  this.onModeChange,
  this.readyLoading,
  this.endLoading,
  super.height,
  super.loadStyle,
  super.onClick,
});