UiLimitedBox constructor

const UiLimitedBox({
  1. Key? key,
  2. Size? maxSize,
  3. double? maxWidth,
  4. double? maxHeight,
  5. double? maxDimension,
  6. Duration? duration,
  7. Curve? curve,
  8. VoidCallback? onEnd,
  9. Widget? child,
})

UiWidget for LimitedBox, or AnimatedLimitedBox if duration is present.

Implementation

const UiLimitedBox({
  super.key,
  this.maxSize,
  this.maxWidth,
  this.maxHeight,
  this.maxDimension,
  super.duration,
  super.curve,
  super.onEnd,
  super.child,
});