UiPositioned constructor

const UiPositioned({
  1. Key? key,
  2. double? left,
  3. double? top,
  4. double? right,
  5. double? bottom,
  6. double? width,
  7. double? height,
  8. Duration? duration,
  9. Curve? curve,
  10. VoidCallback? onEnd,
  11. Widget? child,
})

UiWidget for Positioned, or AnimatedPositioned if duration is present.

Implementation

const UiPositioned({
  super.key,
  this.left,
  this.top,
  this.right,
  this.bottom,
  this.width,
  this.height,
  super.duration,
  super.curve,
  super.onEnd,
  super.child,
});