Simple and quick to set up sidebar. Soft animations

Image from the Package

Features

Video from the Package

Getting started

Just add the package to pubspec.yaml and start using it.

Usage

Row(
      children: [
        SimpleSidebar(
          simpleSidebarTheme: SimpleSidebarTheme(),
          initialState: false,
          startIndexWithOne: true,
          sidebarItems: [
            SimpleSidebarItem(title: "Home", iconFront: Icons.home_outlined),
            SimpleSidebarItem(
                title: "Gallery", iconFront: Icons.image_outlined),
            SimpleSidebarItem(title: "Users", iconFront: Icons.group_outlined),
            SimpleSidebarItem(title: "Exit", iconEnd: Icons.close),
          ],
          onTapped: (value) {
            log("Switch to Item with value $value");
          },
          toggleSidebar: (value) {
            log("Sidebar is now $value");
          },
        ),
        Expanded(
          child: Container(
            decoration: BoxDecoration(
                color: Colors.red, borderRadius: BorderRadius.circular(16)),
            margin: const EdgeInsets.all(8),
          ),
        )
      ],
    )

Additional information

Should there be any questions, wishes mail me: Contact

create an issue on GitHub for bugs. And now have fun with the sidebar