CustomBottomNavBar constructor

const CustomBottomNavBar({
  1. Key? key,
  2. required List<NavigationItem> items,
  3. Color? backgroundColor,
  4. Color? selectedItemColor,
  5. Color? unselectedItemColor,
  6. double? elevation,
  7. BottomNavigationBarType? type,
  8. double? selectedFontSize,
  9. double? unselectedFontSize,
  10. bool? showSelectedLabels,
  11. bool? showUnselectedLabels,
  12. IconThemeData? selectedIconTheme,
  13. IconThemeData? unselectedIconTheme,
  14. EdgeInsetsGeometry? itemPadding,
  15. EdgeInsetsGeometry? margin,
})

Implementation

const CustomBottomNavBar({
  super.key,
  required this.items,
  this.backgroundColor,
  this.selectedItemColor,
  this.unselectedItemColor,
  this.elevation,
  this.type,
  this.selectedFontSize,
  this.unselectedFontSize,
  this.showSelectedLabels,
  this.showUnselectedLabels,
  this.selectedIconTheme,
  this.unselectedIconTheme,
  this.itemPadding,
  this.margin,
});