Skip to content

Commit

Permalink
Fixes #22 and Fixes #24
Browse files Browse the repository at this point in the history
  • Loading branch information
letsar committed Aug 22, 2018
1 parent 435ed7e commit 60ec70f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.4.2
### Fixed
* https://github.com/letsar/flutter_slidable/issues/22 and https://github.com/letsar/flutter_slidable/issues/24 (Issue with controller).

## 0.4.1
### Added
* The `SlidableController` class.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ In the `pubspec.yaml` of your flutter project, add the following dependency:
```yaml
dependencies:
...
flutter_slidable: "^0.4.1"
flutter_slidable: "^0.4.2"
```
In your library add the following import:
Expand Down
2 changes: 1 addition & 1 deletion lib/src/widgets/slidable.dart
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ class SlidableState extends State<Slidable>
_actionsMoveController.dispose();
_resizeController?.dispose();
_removeScrollingNotifierListener();
widget.controller?.activeState = null;
widget.controller?._activeState = null;
super.dispose();
}

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_slidable
description: A Flutter implementation of slidable list item with directional slide actions that can be dismissed.
version: 0.4.1
version: 0.4.2
author: Romain Rastel <[email protected]>
homepage: https://github.com/letsar/flutter_slidable

Expand Down

0 comments on commit 60ec70f

Please sign in to comment.