OverflowBox constructor

OverflowBox({
  1. AlignmentGeometry alignment = Alignment.center,
  2. double? minWidth,
  3. double? maxWidth,
  4. double? minHeight,
  5. double? maxHeight,
  6. Widget? child,
})

Creates a widget that lets its child overflow itself.

Implementation

OverflowBox({
  this.alignment = Alignment.center,
  this.minWidth,
  this.maxWidth,
  this.minHeight,
  this.maxHeight,
  Widget? child,
}) : super(child: child);