overflowing method
A widget that imposes different constraints on its child than it gets from its parent, possibly allowing the child to overflow the parent.
Implementation
Widget overflowing({
Key? key,
AlignmentGeometry alignment = Alignment.center,
double? minWidth,
double? maxWidth,
double? minHeight,
double? maxHeight,
}) {
return OverflowBox(
key: key,
alignment: alignment,
minWidth: minWidth,
maxWidth: maxWidth,
minHeight: minHeight,
maxHeight: maxHeight,
child: this,
);
}