NavBarEssentials constructor

const NavBarEssentials({
  1. Key? key,
  2. int? selectedIndex,
  3. int? previousIndex,
  4. Color? backgroundColor,
  5. bool? popScreensOnTapOfSelectedTab,
  6. ItemAnimationProperties? itemAnimationProperties,
  7. double? navBarHeight = 0.0,
  8. required List<PersistentBottomNavBarItem>? items,
  9. ValueChanged<int>? onItemSelected,
  10. NavBarPadding? padding,
  11. BuildContext? selectedScreenBuildContext,
})

Implementation

const NavBarEssentials({
  Key? key,
  this.selectedIndex,
  this.previousIndex,
  this.backgroundColor,
  this.popScreensOnTapOfSelectedTab,
  this.itemAnimationProperties,
  this.navBarHeight = 0.0,
  required this.items,
  this.onItemSelected,
  this.padding,
  this.selectedScreenBuildContext,
});