custom_sidemenu 0.0.3 copy "custom_sidemenu: ^0.0.3" to clipboard
custom_sidemenu: ^0.0.3 copied to clipboard

Flutter package to use custom appbar with animation and easy approach ,this widget can be root of your ui to pass home and other screen under custom menubar environment.

Package for using custom sidebar in flutter as an parent root widget.

Features #

  • Custom Sidebar with animation
  • Custom Appbar
  • Parent widget to cover it all

Screenshots #

Getting started #

pub.dev

Usage #

Create the List of MenuItems and add the MenuItem which you wish to add in your drawer using this widget

 List<CustomMenuItem> menuItemsList=[
     CustomMenuItem(
                        callback: () {
                        //Callback function to route to page on Click
                        },
                        title: 'Home',
                        leadingIcon: Icons.home,
                          iconSize: 22,
       titleSize: 16,


                      ),
    CustomMenuItem(
                        callback: () {
                        //Callback function to route to page on Click
                        },
                        title: 'History',
                           leadingIcon: Icons.history,
                                 iconSize: 22,
      titleSize: 16,
                       
                      ),
                      ];

                     

Add the List of menuItems in CustomDrawer widget with other customised details . see example for further information

Scaffold(
      // appBar: AppBar(

      //   title: Text(widget.title),
      // ),
      body:CustomDrawer(homeWidget: Center(child:Text('Your Home Widget'),),
      menuItemsList: menuItemsList, appBarActions: [], appBarTitle: Text('Your Home Widget') , menuIcon: const Icon(Icons.menu),
      )
      
      );

Additional information #

For contribution and issues: https://github.com/UsamaYousaf/custom_sidemenu

7
likes
120
pub points
54%
popularity

Publisher

unverified uploader

Flutter package to use custom appbar with animation and easy approach ,this widget can be root of your ui to pass home and other screen under custom menubar environment.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_screenutil

More

Packages that depend on custom_sidemenu