Flutter multiplatform navigation sidebar / drawer widget

frezyx

Stanislav Ilin

Posted on August 10, 2022

Flutter multiplatform navigation sidebar / drawer widget

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!

šŸ’– šŸ’Ŗ šŸ™… šŸš©
frezyx
Stanislav Ilin

Posted on August 10, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related