SolidNavBar constructor

const SolidNavBar({
  1. Key? key,
  2. required List<SolidNavTab> tabs,
  3. required int selectedIndex,
  4. required void onTabSelected(
    1. int
    ),
  5. void onShowAlert(
    1. BuildContext,
    2. String,
    3. String?
    )?,
  6. double? minWidth,
  7. double? groupAlignment,
  8. double? iconSize,
  9. double? labelFontSize,
})

Creates a SolidNavBar with the specified configuration.

Implementation

const SolidNavBar({
  super.key,
  required this.tabs,
  required this.selectedIndex,
  required this.onTabSelected,
  this.onShowAlert,
  this.minWidth,
  this.groupAlignment,
  this.iconSize,
  this.labelFontSize,
});