BsNav constructor

const BsNav({
  1. Key? key,
  2. required List<Widget> children,
  3. BsNavVariant variant = .plain,
  4. BsNavAlignment alignment = .start,
  5. bool vertical = false,
  6. EdgeInsetsGeometry padding = EdgeInsets.zero,
  7. bool wrap = true,
})

Creates a BsNav container.

Implementation

const BsNav({
  super.key,
  required this.children,
  this.variant = .plain,
  this.alignment = .start,
  this.vertical = false,
  this.padding = EdgeInsets.zero,
  this.wrap = true,
});