ScaleFade constructor

ScaleFade({
  1. Duration? delay,
  2. Duration? duration,
  3. Widget? child,
  4. bool fade = true,
  5. double scale = 0.7,
  6. CustomAnimationControl control = CustomAnimationControl.PLAY,
  7. Curve curve = Curves.easeIn,
})

Implementation

ScaleFade({
  this.delay,
  this.duration,
  this.child,
  this.fade = true,
  this.scale = 0.7,
  this.control = CustomAnimationControl.PLAY,
  this.curve = Curves.easeIn,
});