UiSizedBox constructor

const UiSizedBox({
  1. Key? key,
  2. Size? size,
  3. double? width,
  4. double? height,
  5. double? dimension,
  6. Duration? duration,
  7. Curve? curve,
  8. VoidCallback? onEnd,
  9. Widget? child,
})

UiWidget for SizedBox, or AnimatedSizedBox if duration is present.

Implementation

const UiSizedBox({
  super.key,
  this.size,
  this.width,
  this.height,
  this.dimension,
  super.duration,
  super.curve,
  super.onEnd,
  super.child,
});