GenericFadeTransition constructor

GenericFadeTransition({
  1. required Widget child,
  2. Duration delay = const Duration(),
  3. Duration duration = const Duration(seconds: 1),
  4. double xEnd = 0,
  5. double xStart = 0,
  6. double yStart = 100,
  7. double yEnd = 0,
  8. Curve animationCurve = Curves.ease,
  9. void onStart()?,
  10. void onComplete()?,
})

Implementation

GenericFadeTransition({
  required this.child,
  this.delay = const Duration(),
  this.duration = const Duration(seconds: 1),
  this.xEnd = 0,
  this.xStart = 0,
  this.yStart = 100,
  this.yEnd = 0,
  this.animationCurve = Curves.ease,
  this.onStart,
  this.onComplete,
});