AurisContainer constructor

const AurisContainer({
  1. Key? key,
  2. Widget? child,
  3. double? cut,
  4. Color? fill,
  5. Color? borderColor,
  6. double borderWidth = 1.0,
  7. AurisDepth? depth,
  8. EdgeInsetsGeometry? padding,
  9. double? width,
  10. double? height,
  11. AlignmentGeometry? alignment,
  12. bool clipChild = true,
})

Creates a chamfered container.

Any of cut, fill, or borderColor left null resolves from the ambient AurisScheme at build time.

Implementation

const AurisContainer({
  super.key,
  this.child,
  this.cut,
  this.fill,
  this.borderColor,
  this.borderWidth = 1.0,
  this.depth,
  this.padding,
  this.width,
  this.height,
  this.alignment,
  this.clipChild = true,
});