Footer constructor

const Footer({
  1. required double triggerOffset,
  2. required bool clamping,
  3. Duration processedDuration = const Duration(seconds: 1),
  4. SpringDescription? spring,
  5. SpringDescription? horizontalSpring,
  6. SpringBuilder? readySpringBuilder,
  7. SpringBuilder? horizontalReadySpringBuilder,
  8. bool springRebound = true,
  9. FrictionFactor? frictionFactor,
  10. FrictionFactor? horizontalFrictionFactor,
  11. bool safeArea = true,
  12. double? infiniteOffset = 0,
  13. bool? hitOver,
  14. bool? infiniteHitOver,
  15. IndicatorPosition position = IndicatorPosition.above,
  16. bool hapticFeedback = false,
  17. double? secondaryTriggerOffset,
  18. double secondaryVelocity = kDefaultSecondaryVelocity,
  19. double? secondaryDimension,
  20. double secondaryCloseTriggerOffset = kDefaultSecondaryCloseTriggerOffset,
  21. bool notifyWhenInvisible = false,
  22. IndicatorStateListenable? listenable,
  23. bool triggerWhenReach = false,
  24. bool triggerWhenRelease = false,
  25. bool triggerWhenReleaseNoWait = false,
  26. double maxOverOffset = double.infinity,
})

Implementation

const Footer({
  required double triggerOffset,
  required bool clamping,
  Duration processedDuration = const Duration(seconds: 1),
  physics.SpringDescription? spring,
  physics.SpringDescription? horizontalSpring,
  SpringBuilder? readySpringBuilder,
  SpringBuilder? horizontalReadySpringBuilder,
  bool springRebound = true,
  FrictionFactor? frictionFactor,
  FrictionFactor? horizontalFrictionFactor,
  bool safeArea = true,
  double? infiniteOffset = 0,
  bool? hitOver,
  bool? infiniteHitOver,
  IndicatorPosition position = IndicatorPosition.above,
  bool hapticFeedback = false,
  double? secondaryTriggerOffset,
  double secondaryVelocity = kDefaultSecondaryVelocity,
  double? secondaryDimension,
  double secondaryCloseTriggerOffset = kDefaultSecondaryCloseTriggerOffset,
  bool notifyWhenInvisible = false,
  IndicatorStateListenable? listenable,
  bool triggerWhenReach = false,
  bool triggerWhenRelease = false,
  bool triggerWhenReleaseNoWait = false,
  double maxOverOffset = double.infinity,
}) : super(
        triggerOffset: triggerOffset,
        clamping: clamping,
        processedDuration: processedDuration,
        spring: spring,
        horizontalSpring: horizontalSpring,
        readySpringBuilder: readySpringBuilder,
        horizontalReadySpringBuilder: horizontalReadySpringBuilder,
        springRebound: springRebound,
        frictionFactor: frictionFactor,
        horizontalFrictionFactor: horizontalFrictionFactor,
        safeArea: safeArea,
        infiniteOffset: infiniteOffset,
        hitOver: hitOver,
        infiniteHitOver: infiniteHitOver,
        position: position,
        hapticFeedback: hapticFeedback,
        secondaryTriggerOffset: secondaryTriggerOffset,
        secondaryVelocity: secondaryVelocity,
        secondaryDimension: secondaryDimension,
        secondaryCloseTriggerOffset: secondaryCloseTriggerOffset,
        notifyWhenInvisible: notifyWhenInvisible,
        listenable: listenable,
        triggerWhenReach: triggerWhenReach,
        triggerWhenRelease: triggerWhenRelease,
        triggerWhenReleaseNoWait: triggerWhenReleaseNoWait,
        maxOverOffset: maxOverOffset,
      );