curved_drawer 0.0.1 copy "curved_drawer: ^0.0.1" to clipboard
curved_drawer: ^0.0.1 copied to clipboard

outdated

A Flutter widget that provides an easy to use animated drawer.

curved_drawer #

A Flutter widget that provides an easy to use animated drawer.

Gif

Add dependency #

dependencies:
  curved_drawer: ^0.0.1 #latest version

Simple Implementation #

Scaffold(
  drawer: CurvedDrawer(
    color: Colors.white,
    labelColor: Colors.black54,
    width: 75.0
    items: <DrawerItem>[
      DrawerItem(icon: personIcon),
      //Optional Label Text
      DrawerItem(icon: messageIcon, label: "Messages")
    ],
    onTap: (index) {
      //Handle button tap
    },
  ),
  body: Container(),
)

Attributes #

items: List of DrawerItems
index: index of selected item, can be used to change current index or to set initial index
color: Color of drawer, default Colors.white buttonBackgroundColor: background color of floating button, default same as color attribute
backgroundColor: Color of NavigationBar's background, default Colors.transparent onTap: Function handling taps on items
animationCurve: Curves interpolating button change animation, default Curves.easeOutCubic
animationDuration: Duration of button change animation, default Duration(milliseconds: 600)
width: Width of Drawer, min 50.0, max 100.0 isEndDrawer: set to true if used as as an end drawer, default is false

83
likes
0
pub points
41%
popularity

Publisher

verified publisherrpgtavernapp.com

A Flutter widget that provides an easy to use animated drawer.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on curved_drawer