UiPadding constructor

const UiPadding({
  1. Key? key,
  2. EdgeInsetsGeometry? padding,
  3. double? all,
  4. double? left,
  5. double? top,
  6. double? right,
  7. double? bottom,
  8. double? horizontal,
  9. double? vertical,
  10. Duration? duration,
  11. Curve? curve,
  12. VoidCallback? onEnd,
  13. Widget? child,
})

UiWidget for Padding, or AnimatedPadding if duration is present.

Implementation

const UiPadding({
  super.key,
  this.padding,
  this.all,
  this.left,
  this.top,
  this.right,
  this.bottom,
  this.horizontal,
  this.vertical,
  super.duration,
  super.curve,
  super.onEnd,
  super.child,
});