NesContainer constructor

const NesContainer({
  1. Key? key,
  2. String? label,
  3. Widget? child,
  4. double? width,
  5. double? height,
  6. Color? backgroundColor,
  7. EdgeInsets? padding,
  8. NesContainerPainterBuilder? painterBuilder,
})

A bordered container, with an optional label.

Implementation

const NesContainer({
  super.key,
  this.label,
  this.child,
  this.width,
  this.height,
  this.backgroundColor,
  this.padding,
  this.painterBuilder,
});