overflow method
溢出控件 >>>
Implementation
OverflowBox overflow(
{Key? key,
AlignmentGeometry alignment = Alignment.topLeft,
double? minWidth,
double? maxWidth,
double? minHeight,
double? maxHeight}) {
return OverflowBox(
child: this,
alignment: alignment,
minWidth: minWidth,
minHeight: minHeight,
maxWidth: maxWidth,
maxHeight: maxHeight,
);
}