AnimatedEntry constructor

const AnimatedEntry({
  1. Key? key,
  2. required Widget child,
  3. Duration delay = Duration.zero,
  4. Duration duration = const Duration(milliseconds: 300),
  5. Curve curve = Curves.easeOutCubic,
  6. Offset slideOffset = const Offset(0, 20),
  7. bool animateOnInit = true,
  8. bool enabled = true,
})

Implementation

const AnimatedEntry({
  super.key,
  required this.child,
  this.delay = Duration.zero,
  this.duration = const Duration(milliseconds: 300),
  this.curve = Curves.easeOutCubic,
  this.slideOffset = const Offset(0, 20),
  this.animateOnInit = true,
  this.enabled = true,
});