drawer_swipe 0.0.4 drawer_swipe: ^0.0.4 copied to clipboard
Drawer swipe Package for displaying multi layer drawer
DrawerSwipe #
A Swipe Drawer Library for Easy and Quick Usage.
- Checkout the Original Author : ![GitHub followers])
The source code is 100% Dart, and everything resides in the /lib folder.
Show some ❤️ and star the repo to support the project #
GIF #
💻 Installation #
In the dependencies:
section of your pubspec.yaml
, add the following line:
drawer_swipe: <latest_version>
❔ Usage #
Import this class #
import 'package:drawer_swipe/drawer_swipe.dart';
Use SwipeDrawer #
@override
Widget build(BuildContext context) {
return Scaffold(
// add this line so you can add your appBar in Body
extendBodyBehindAppBar: true,
body: SwipeDrawer(
radius: 20,
key: drawerKey,
bodyBackgroundPeekSize: 30,
backgroundColor: Colors.red,
// pass drawer widget
drawer: buildDrawer(),
// pass body widget
child: buildBody(),
),
);
}
🎨 Customization and Attributes #
SwipeDrawer attributes
Attribute Name | Example Value | Description |
---|---|---|
child | BodyWidget() | Screen Body Widget |
drawer | DrawerWidget() | Drawer Body Widget |
radius | 20.0 | body radius value the default value is 0.0 |
bodyBackgroundPeekSize | 30.0 | the distance between the main body and the faded one the default value is 50.0 |
backgroundColor | Colors.red | background color the default value is Colors.black |
bodySize | 70.0 | body width when opening the drawer the default value is 80.0 |
curve | Curves.easeOut | animation curve default value is Curves.easeIn |
Contributors ✨ #
Thanks goes to these wonderful people (emoji key):
Ahmed Eslayed 💻 |
📃 License #
Copyright (c) 2012 Pharous
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Getting Started #
For help getting started with Flutter, view our online documentation.
For help on editing package code, view the documentation.