release version v2.0.0

master
NikhilVadoliya 4 years ago
parent d7ffcc7194
commit f35d1fa1db

@ -1,3 +1,7 @@
## [2.0.0] - Release
* Added null safety
## [1.2.1] - Release ## [1.2.1] - Release
* Improve code document * Improve code document

@ -19,14 +19,16 @@ class SliderAppBar extends StatelessWidget {
const SliderAppBar( const SliderAppBar(
{Key? key, {Key? key,
this.appBarPadding = const EdgeInsets.only(top: 24), this.appBarPadding = const EdgeInsets.only(top: 24),
this.appBarColor = Colors.blue, this.drawerIcon, this.appBarColor = Colors.blue,
this.drawerIcon,
this.splashColor = Colors.black, this.splashColor = Colors.black,
this.drawerIconColor = Colors.black87, this.drawerIconColor = Colors.black87,
this.drawerIconSize = 27, this.drawerIconSize = 27,
required this.animationController, required this.animationController,
required this.onTap, required this.onTap,
required this.title, required this.title,
required this.isTitleCenter, this.trailing, required this.isTitleCenter,
this.trailing,
required this.slideDirection, required this.slideDirection,
required this.appBarHeight}) required this.appBarHeight})
: super(key: key); : super(key: key);

@ -1,6 +1,6 @@
name: flutter_slider_drawer name: flutter_slider_drawer
description: A Flutter package with custom implementation of the Slider Drawer Menu description: A Flutter package with custom implementation of the Slider Drawer Menu
version: 1.2.1 version: 2.0.0
homepage: https://github.com/NikhilVadoliya/Flutter_slider_drawer homepage: https://github.com/NikhilVadoliya/Flutter_slider_drawer
environment: environment:

Loading…
Cancel
Save