OverflowBox constructor
- Key? key,
- AlignmentGeometry alignment = Alignment.center,
- double? minWidth,
- double? maxWidth,
- double? minHeight,
- double? maxHeight,
- OverflowBoxFit fit = OverflowBoxFit.max,
- 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,
});