menu_drawer

Creator: coderz1093

Last updated:

1 purchase

menu_drawer Image
menu_drawer Images
Add to Cart

Description:

menu drawer

Flutter menu drawer #

A Flutter package with custom implementation of Menu Drawer

To start using this package, add menu_drawer dependency to your pubspec.yaml
dependencies:
menu_drawer: '<latest_release>'
copied to clipboard
Features #

control header menu
add many items (all control leading - all control name - press)
add power by
add versions

how to use #
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
drawer: Menu(
item: [
ListTile(
title: const Text(
'Home',
style: TextStyle(
color: Colors.grey,
fontSize: 20,
),
),
leading: const Icon(
Icons.home,
color: Colors.grey,
size: 25,
),
onTap: () {
Navigator.pop(context);
},
),
Divider(
height: 1,
color: Colors.grey[400],
),
const SizedBox(
height: 10,
),
ListTile(
title: const Text(
'Support',
style: TextStyle(
color: Colors.grey,
fontSize: 20,
),
),
leading: const Icon(
Icons.support,
color: Colors.grey,
size: 25,
),
onTap: () {
Navigator.pop(context);
},
),
Divider(
height: 1,
color: Colors.grey[400],
),
const SizedBox(
height: 10,
),
ListTile(
title: const Text(
'About',
style: TextStyle(
color: Colors.grey,
fontSize: 20,
),
),
leading: const Icon(
Icons.abc_outlined,
color: Colors.grey,
size: 25,
),
onTap: () {
Navigator.pop(context);
},
),
Divider(
height: 1,
color: Colors.grey[400],
),
const SizedBox(
height: 10,
),
],
titleDrawerHeader: "mohamed fahmy",
width: 320.0,
colorDrawerHeader: Colors.blue,
heightDrawerHeader: 70.0,
widthDrawerHeader: 70.0,
urlImageDrawerHeader:
"https://www.escapeauthority.com/wp-content/uploads/2116/11/No-image-found.jpg",
spaceDrawerHeader: 15.0,
colorTitleDrawerHeader: Colors.white,
fontSizeTitleDrawerHeader: 20.0,
subTitleDrawerHeader: "",
colorSubTitleDrawerHeader: Colors.white,
fontSizeSubTitleDrawerHeader: 20.0,
namePoweredBy: 'PoweredBy',
colorPoweredBy: Colors.blue,
fontSizePoweredBy: 17.0,
heightNameImagePoweredBy: 5,
pressImagePoweredBy: () {
print('pressImagePoweredBy');
},
urlImagePoweredBy: "assets/logoCompany.png",
heightImagePoweredBy: 40.0,
widthImagePoweredBy: 150.0,
heightImageVersion: 10.0,
nameVersion: 'Version',
valueVersion: "1.0",
colorVersion: Colors.blue,
fontSizeVersion: 17.0,
),
);
}
copied to clipboard
License #
BSD 3-clause License

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.