FSStaggeredSlideIn constructor
const
FSStaggeredSlideIn({
- Key? key,
- required List<
Widget> children, - FSSlideDirection direction = FSSlideDirection.fromBottom,
- Duration duration = const Duration(milliseconds: 500),
- Duration staggerDelay = const Duration(milliseconds: 100),
- Curve curve = Curves.easeOut,
- bool autoPlay = true,
- double offsetFraction = 1.0,
- bool maintainState = true,
- String? semanticLabel,
- bool respectSystemPreferences = true,
Implementation
const FSStaggeredSlideIn({
super.key,
required this.children,
this.direction = FSSlideDirection.fromBottom,
this.duration = const Duration(milliseconds: 500),
this.staggerDelay = const Duration(milliseconds: 100),
this.curve = Curves.easeOut,
this.autoPlay = true,
this.offsetFraction = 1.0,
this.maintainState = true,
this.semanticLabel,
this.respectSystemPreferences = true,
});