UiOverflowBox constructor

const UiOverflowBox({
  1. Key? key,
  2. AlignmentGeometry alignment = Alignment.center,
  3. Size? minSize,
  4. Size? maxSize,
  5. double? minWidth,
  6. double? maxWidth,
  7. double? minHeight,
  8. double? maxHeight,
  9. double? minDimension,
  10. double? maxDimension,
  11. Duration? duration,
  12. Curve? curve,
  13. VoidCallback? onEnd,
  14. Widget? child,
})

UiWidget for OverflowBox, or AnimatedOverflowBox if duration is present.

Implementation

const UiOverflowBox({
  super.key,
  this.alignment = Alignment.center,
  this.minSize,
  this.maxSize,
  this.minWidth,
  this.maxWidth,
  this.minHeight,
  this.maxHeight,
  this.minDimension,
  this.maxDimension,
  super.duration,
  super.curve,
  super.onEnd,
  super.child,
});