Flutter multiplatform navigation sidebar / drawer widget

Stanislav Ilin - Aug 10 '22 - - Dev Community

SidebarX - package to create beautiful and convenient sidebar navigation widgets easy 🔥

Mobile Desktop Web
Mobile Web Desktop

The package is designed with maximum adaptation to large screens.
Therefore, adding a widget to your screen will be very simple.

Scaffold(
  body: Row(
    children: [
      SidebarX(
        controller: SidebarXController(selectedIndex: 0),
        items: const [
          SidebarXItem(icon: Icons.home, label: 'Home'),
          SidebarXItem(icon: Icons.search, label: 'Search'),
        ],
      ),
      // Your app screen body
    ],
  ),
)
Enter fullscreen mode Exit fullscreen mode

Customization

Package have huge customization fields list and by default can adjust to the theme of your application.

For example - you can change colors, textStyles, add your custom builders for sidebar items and all what you need.

😎 Go to the GitHub repository page!
🥵 Here you can see beautiful examples of usage and code snippets.

Show some ❤️ and star the repo to support the project!

. . . . . . . . . . . . . . . . . . . .
Terabox Video Player