BezierFooter constructor

const BezierFooter({
  1. Key? key,
  2. double triggerOffset = 100,
  3. bool clamping = false,
  4. IndicatorPosition position = IndicatorPosition.above,
  5. Duration processedDuration = kBezierBackgroundDisappearDuration,
  6. SpringDescription? spring,
  7. SpringBuilder readySpringBuilder = kBezierSpringBuilder,
  8. bool springRebound = false,
  9. FrictionFactor frictionFactor = kBezierFrictionFactor,
  10. bool safeArea = true,
  11. double? infiniteOffset = null,
  12. bool? hitOver,
  13. bool? infiniteHitOver,
  14. bool hapticFeedback = false,
  15. bool showBalls = true,
  16. bool spinInCenter = true,
  17. bool onlySpin = false,
  18. Widget? spinWidget,
  19. Widget? noMoreWidget,
  20. BezierSpinBuilder? spinBuilder,
  21. Color? foregroundColor,
  22. Color? backgroundColor,
})

Implementation

const BezierFooter({
  this.key,
  super.triggerOffset = 100,
  super.clamping = false,
  super.position,
  super.processedDuration = kBezierBackgroundDisappearDuration,
  super.spring,
  SpringBuilder super.readySpringBuilder = kBezierSpringBuilder,
  super.springRebound = false,
  FrictionFactor super.frictionFactor = kBezierFrictionFactor,
  super.safeArea,
  super.infiniteOffset = null,
  super.hitOver,
  super.infiniteHitOver,
  super.hapticFeedback,
  this.showBalls = true,
  this.spinInCenter = true,
  this.onlySpin = false,
  this.spinWidget,
  this.noMoreWidget,
  this.spinBuilder,
  this.foregroundColor,
  this.backgroundColor,
});