LeanContainerScrollable constructor

const LeanContainerScrollable({
  1. Key? key,
  2. required Widget? child,
  3. AlignmentGeometry? alignment,
  4. Decoration? boxDecoration,
  5. BoxConstraints? constraints,
  6. EdgeInsetsGeometry? margin,
  7. EdgeInsetsGeometry? padding,
  8. bool noDeco = false,
  9. double? width,
  10. required double height,
})

The constructor requires a height and a child Widget.

Implementation

const LeanContainerScrollable(
    {super.key,
    required super.child,
    super.alignment,
    super.boxDecoration,
    super.constraints,
    super.margin,
    super.padding,
      super.noDeco=false,
    super.width,
    required double height})
    : super(height: height);