Skip to content

Commit 20b376a

Browse files
committed
general improvement of the code
1 parent 60df049 commit 20b376a

File tree

6 files changed

+132
-137
lines changed

6 files changed

+132
-137
lines changed

.idea/workspace.xml

Lines changed: 96 additions & 65 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [0.2.5] - 2019-04-19.
2+
3+
* General improvement of the code.
4+
15
## [0.2.4] - 2019-04-16.
26

37
* Fix swipe precision.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# flutter_inner_drawer
22

3-
[![pub package](https://img.shields.io/badge/pub-0.2.4-orange.svg)](https://pub.dartlang.org/packages/flutter_inner_drawer)
3+
[![pub package](https://img.shields.io/badge/pub-0.2.5-orange.svg)](https://pub.dartlang.org/packages/flutter_inner_drawer)
44
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/dnag88)
55

66

@@ -10,7 +10,7 @@ Inner Drawer is an easy way to create an internal side section (left/right) wher
1010
Add this to your package's pubspec.yaml file:
1111
```dart
1212
dependencies:
13-
flutter_inner_drawer: "^0.2.4"
13+
flutter_inner_drawer: "^0.2.5"
1414
```
1515

1616
### New Version 0.1.5 -> 0.2.0

example/lib/main.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,11 @@ class _MyHomePageState extends State<MyHomePage>
9090
return InnerDrawer(
9191
key: _innerDrawerKey,
9292
position: _position ? InnerDrawerPosition.start : InnerDrawerPosition.end,
93+
animationType: _animationType,
9394
onTapClose: _onTapToClose,
9495
offset: _offset,
9596
swipe: _swipe,
9697
colorTransition: currentColor,
97-
animationType: _animationType,
98-
//innerDrawerCallback: (a) => print(a),
9998
child: Material(
10099
child: SafeArea(
101100
//top: false,

0 commit comments

Comments
 (0)