FSScaleAnimationPop constructor

const FSScaleAnimationPop({
  1. Key? key,
  2. required Widget child,
  3. Duration duration = const Duration(milliseconds: 400),
  4. Duration delay = Duration.zero,
  5. bool autoPlay = true,
  6. VoidCallback? onComplete,
  7. Alignment alignment = Alignment.center,
  8. bool maintainState = true,
  9. bool respectSystemPreferences = true,
})

Implementation

const FSScaleAnimationPop({
  super.key,
  required this.child,
  this.duration = const Duration(milliseconds: 400),
  this.delay = Duration.zero,
  this.autoPlay = true,
  this.onComplete,
  this.alignment = Alignment.center,
  this.maintainState = true,
  this.respectSystemPreferences = true,
});