KScaleGestureWrapper constructor

const KScaleGestureWrapper({
  1. Key? key,
  2. (double, double) scaleBetween = (1.0, 0.9),
  3. void onTapDown(
    1. TapDownDetails details
    )?,
  4. void onTapUp(
    1. TapUpDetails details
    )?,
  5. VoidCallback? onTap,
  6. VoidCallback? onLongPress,
  7. Duration animationDuration = Durations.medium2,
  8. Duration? delayReverseDuration,
  9. double borderRadius = 0,
  10. Curve? curve,
  11. required Widget child,
})

Implementation

const KScaleGestureWrapper({
  super.key,
  this.scaleBetween = (1.0, 0.9),
  this.onTapDown,
  this.onTapUp,
  this.onTap,
  this.onLongPress,
  this.animationDuration = Durations.medium2,
  this.delayReverseDuration,
  this.borderRadius = 0,
  this.curve,
  required this.child,
});