CustomBottomNavBar constructor

const CustomBottomNavBar({
  1. Key? key,
  2. required List<NavigationItem> items,
  3. Color? backgroundColor,
  4. Color? selectedItemColor,
  5. Color? unselectedItemColor,
  6. double? elevation = 8.0,
})

Implementation

const CustomBottomNavBar({
  super.key,
  required this.items,
  this.backgroundColor,
  this.selectedItemColor,
  this.unselectedItemColor,
  this.elevation = 8.0, // Default elevation
});