overflow method

OverflowBox overflow({
  1. Key? key,
  2. AlignmentGeometry alignment = Alignment.topLeft,
  3. double? minWidth,
  4. double? maxWidth,
  5. double? minHeight,
  6. double? maxHeight,
})

溢出控件 >>>

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,
  );
}