ClassicalFooter constructor

ClassicalFooter({
  1. double extent = 60.0,
  2. double triggerDistance = 70.0,
  3. bool float = false,
  4. Duration? completeDuration = const Duration(seconds: 1),
  5. bool enableInfiniteLoad = true,
  6. bool enableHapticFeedback = true,
  7. bool overScroll = false,
  8. bool safeArea = true,
  9. EdgeInsets? padding,
  10. Key? key,
  11. AlignmentGeometry? alignment,
  12. String? loadText,
  13. String? loadReadyText,
  14. String? loadingText,
  15. String? loadedText,
  16. String? loadFailedText,
  17. String? noMoreText,
  18. double lineWidth = 100,
  19. bool showInfo = true,
  20. String? infoText,
  21. Color bgColor = Colors.transparent,
  22. Color textColor = Colors.black,
  23. Color infoColor = Colors.teal,
})

Implementation

ClassicalFooter({
  double extent = 60.0,
  double triggerDistance = 70.0,
  bool float = false,
  Duration? completeDuration = const Duration(seconds: 1),
  bool enableInfiniteLoad = true,
  bool enableHapticFeedback = true,
  bool overScroll = false,
  bool safeArea = true,
  EdgeInsets? padding,
  this.key,
  this.alignment,
  this.loadText,
  this.loadReadyText,
  this.loadingText,
  this.loadedText,
  this.loadFailedText,
  this.noMoreText,
  this.lineWidth = 100,
  this.showInfo = true,
  this.infoText,
  this.bgColor = Colors.transparent,
  this.textColor = Colors.black,
  this.infoColor = Colors.teal,
}) : super(
  extent: extent,
  triggerDistance: triggerDistance,
  float: float,
  completeDuration: completeDuration,
  enableInfiniteLoad: enableInfiniteLoad,
  enableHapticFeedback: enableHapticFeedback,
  overScroll: overScroll,
  safeArea: safeArea,
  padding: padding,
);