ExpandOrScroll constructor

const ExpandOrScroll({
  1. Key? key,
  2. bool wrapInSafeArea = true,
  3. EdgeInsetsGeometry padding = EdgeInsets.zero,
  4. Axis scrollDirection = Axis.vertical,
  5. ScrollController? scrollController,
  6. required Widget child,
})

Implementation

const ExpandOrScroll({
  super.key,
  this.wrapInSafeArea = true,
  this.padding = EdgeInsets.zero,
  this.scrollDirection = Axis.vertical,
  this.scrollController,
  required this.child,
});