FSScaleAnimationStandard constructor

const FSScaleAnimationStandard({
  1. Key? key,
  2. required Widget child,
  3. double beginScale = 0.0,
  4. double endScale = 1.0,
  5. Duration delay = Duration.zero,
  6. bool autoPlay = true,
  7. VoidCallback? onComplete,
  8. VoidCallback? onCancel,
  9. Alignment alignment = Alignment.center,
  10. bool maintainState = true,
  11. bool respectSystemPreferences = true,
})

Implementation

const FSScaleAnimationStandard({
  super.key,
  required this.child,
  this.beginScale = 0.0,
  this.endScale = 1.0,
  this.delay = Duration.zero,
  this.autoPlay = true,
  this.onComplete,
  this.onCancel,
  this.alignment = Alignment.center,
  this.maintainState = true,
  this.respectSystemPreferences = true,
});