WidgetTransitionEffects.outgoingScaleUp constructor

WidgetTransitionEffects.outgoingScaleUp({
  1. Offset? offset,
  2. double? opacity,
  3. Offset? blur,
  4. double? rotation,
  5. Curve? curve,
  6. Offset? skew,
  7. Duration? delay,
  8. Duration? duration,
})

Scale up the text to 3x scale when outgoing

Implementation

WidgetTransitionEffects.outgoingScaleUp(
    {this.offset,
    this.opacity,
    this.blur,
    this.rotation,
    this.curve,
    this.skew,
    this.delay,
    this.duration})
    : scale = 3,
      style = WidgetTransitionEffectStyle.none;