OverflowBox constructor

const OverflowBox(
  1. {Key? key,
  2. AlignmentGeometry alignment = Alignment.center,
  3. double? minWidth,
  4. double? maxWidth,
  5. double? minHeight,
  6. double? maxHeight,
  7. OverflowBoxFit fit = OverflowBoxFit.max,
  8. Widget? child}
)

Creates a widget that lets its child overflow itself.

Implementation

const OverflowBox({
  super.key,
  this.alignment = Alignment.center,
  this.minWidth,
  this.maxWidth,
  this.minHeight,
  this.maxHeight,
  this.fit = OverflowBoxFit.max,
  super.child,
});