WtScaleIn constructor

const WtScaleIn({
  1. Key? key,
  2. required Widget child,
  3. double scaleFrom = 0.9,
  4. Duration? duration,
  5. Duration delay = Duration.zero,
  6. Curve? curve,
  7. bool fade = true,
})

Scales child into view.

Implementation

const WtScaleIn({
  super.key,
  required this.child,
  this.scaleFrom = 0.9,
  this.duration,
  this.delay = Duration.zero,
  this.curve,
  this.fade = true,
});