overflow method

T overflow({
  1. double? minWidth,
  2. double? maxWidth,
  3. double? minHeight,
  4. double? maxHeight,
  5. AlignmentGeometry alignment = Alignment.center,
  6. Duration? duration,
  7. Curve? curve,
  8. VoidCallback? onEnd,
})

Implementation

T overflow({
  double? minWidth,
  double? maxWidth,
  double? minHeight,
  double? maxHeight,
  AlignmentGeometry alignment = Alignment.center,
  Duration? duration,
  Curve? curve,
  VoidCallback? onEnd,
}) =>
    addChild(UiOverflowBox(
      minWidth: minWidth,
      maxWidth: maxWidth,
      minHeight: minHeight,
      maxHeight: maxHeight,
      alignment: alignment,
      duration: duration,
      curve: curve,
      onEnd: onEnd,
    ));