Flutter Stacked Navbar

Flutter Stacked Navbar is a customizable and flexible navigation bar built for Flutter applications, designed to work seamlessly.

📦 Installation

Add the package to your pubspec.yaml:

dependencies:
  flutter_stacked_navbar: ^1.0.0

🚀 Usage

StackedNavbar(
  navItems: [
    NavItem(
      title: "Home",
      icon: Icon(Icons.home),
      iconSelected: Icon(Icons.home),
    ),
    NavItem(
      title: "My Visits",
      icon: Icon(Icons.calendar),
      iconSelected: Icon(Icons.calendar),
    ),
  ],
  onTabClicked: (index) {},
  activeNavColor: Colors.blueGrey,
  activeLabelColor: Colors.blueGrey,
  inactiveLabelColor: Colors.black,
)

📸 Preview

Stacked Navbar