ElScroll constructor

const ElScroll({
  1. Key? key,
  2. required List<Widget> children,
  3. ScrollController? controller,
  4. ScrollPhysics? physics,
  5. Clip clipBehavior = Clip.hardEdge,
  6. ScrollViewKeyboardDismissBehavior? keyboardDismissBehavior,
  7. EdgeInsets? padding,
  8. double? spacing,
  9. Widget? spacingWidget,
  10. bool center = false,
  11. bool excludeSemantics = false,
  12. String? debugLabel,
  13. String? cacheKey,
})

Implementation

const ElScroll({
  super.key,
  required this.children,
  this.controller,
  this.physics,
  this.clipBehavior = Clip.hardEdge,
  this.keyboardDismissBehavior,
  this.padding,
  this.spacing,
  this.spacingWidget,
  this.center = false,
  this.excludeSemantics = false,
  this.debugLabel,
  this.cacheKey,
});