AnimatedEntry constructor
const
AnimatedEntry({ - Key? key,
- required Widget child,
- Duration delay = Duration.zero,
- Duration duration = const Duration(milliseconds: 300),
- Curve curve = Curves.easeOutCubic,
- Offset slideOffset = const Offset(0, 20),
- bool animateOnInit = true,
- 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,
});