UIProBottomNavItem constructor

const UIProBottomNavItem({
  1. required IconData icon,
  2. IconData? activeIcon,
  3. String? label,
  4. String? badge,
  5. bool showBadgeDot = false,
  6. Color? badgeColor,
})

Creates a bottom navigation item.

Implementation

const UIProBottomNavItem({
  required this.icon,
  this.activeIcon,
  this.label,
  this.badge,
  this.showBadgeDot = false,
  this.badgeColor,
});