AurisContainer constructor
const
AurisContainer({
- Key? key,
- Widget? child,
- double? cut,
- Color? fill,
- Color? borderColor,
- double borderWidth = 1.0,
- AurisDepth? depth,
- EdgeInsetsGeometry? padding,
- double? width,
- double? height,
- AlignmentGeometry? alignment,
- 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,
});