FSStaggeredSlideIn constructor

const FSStaggeredSlideIn({
  1. Key? key,
  2. required List<Widget> children,
  3. FSSlideDirection direction = FSSlideDirection.fromBottom,
  4. Duration duration = const Duration(milliseconds: 500),
  5. Duration staggerDelay = const Duration(milliseconds: 100),
  6. Curve curve = Curves.easeOut,
  7. bool autoPlay = true,
  8. double offsetFraction = 1.0,
  9. bool maintainState = true,
  10. String? semanticLabel,
  11. 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,
});