pro_drawer

Creator: coderz1093

Last updated:

0 purchases

pro_drawer Image
pro_drawer Images
Add to Cart

Description:

pro drawer

pro_drawer #

A pro level animated and customizable drawer for your flutter apps.
Usage (See the example for details) #
class LandingScreen extends StatelessWidget {
const LandingScreen({Key? key}) : super(key: key);

@override
Widget build(BuildContext context) {
return const ProDrawer(
xOffset: 250,
drawerHeader: ProDrawerHeader(), // Drawer header UI
drawerBackgroundColor: Color(0xfff6f6f6),
drawerBody: DrawerBody(), // Drawer menu body
initialPage: HomeScreen(), // Initial page to load
drawerAnimationDuration: Duration(milliseconds: 300), // Drawer open close animation
);
}
}

copied to clipboard
Parameters #
const ProDrawer({
Key? key,
this.drawerHeader, // A fixed header UI top of the drawer menus
required this.drawerBody, // Drawer Menu UI
required this.initialPage, // Initial page to load
required this.xOffset, // page distance from left when drawer is open
this.drawerBackgroundColor,
this.footer, // a fixed footer ui below drawer menu items
required this.drawerAnimationDuration, // Drawer open close animation
this.pageContainerDecorationWhileDrawerOpen, // Decoration for the loaded page
this.pageContainerCircularRadiusWhileDrawerOpen, // By default loaded page is circular and
// default circular radius is 15.
}) : super(key: key);

copied to clipboard
Contacts #
[email protected]

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.