v0.0.1+1curved_drawer_fork
Um widget do Flutter que fornece um puxador animado fácil de usar.
Widget do Flutter para um Drawer Curvado Animado
{"sdk":"flutter"}{"sdk":"flutter"}Texto original em inglês. Visite o GitHub para a versão atual.
A Flutter widget that provides an easy to use animated drawer.
Gif
dependencies:
curved_drawer: ^0.1.2 #latest version
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(),
)
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 - default min 50.0, max 100.0
isEndDrawer: Set to true if used as as an end drawer - default is false