navigationItems property

List<NavItem> navigationItems
final

Implementation

final List<NavItem> navigationItems = [
  NavItem(
    label: 'Home',
    icon: Icons.home_rounded,
    screen: HomePage(),
    activeColor: const Color(0xFF2196F3),
  ),
  NavItem(
    label: 'Notifications',
    icon: Icons.notifications_rounded,
    screen: NotificationsPage(),
    activeColor: const Color(0xFFFF9800),
    showBadge: true,
  ),
  const NavItem(
    label: 'Profile',
    icon: Icons.person_rounded,
    screen: ProfilePage(),
    activeColor: Color(0xFF9C27B0),
  ),
  const NavItem(
    label: 'Settings',
    icon: Icons.settings_rounded,
    screen: SettingsPage(),
    activeColor: Color(0xFF009688),
    inactiveColor: Colors.grey,
  ),
];