simple_sidebar 0.0.6 copy "simple_sidebar: ^0.0.6" to clipboard
simple_sidebar: ^0.0.6 copied to clipboard

A very simple sidebar with Icons, Texts, Header and smoothing. Easy to implement and easy to use

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

5
likes
0
pub points
56%
popularity

Publisher

verified publisherglocknerstudios.at

A very simple sidebar with Icons, Texts, Header and smoothing. Easy to implement and easy to use

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on simple_sidebar