Skip to content

Commit

Permalink
[auto_animated] Fixed dispose in AutoAnimatedIconButton
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeShkurko committed Oct 31, 2019
1 parent 8d2cca3 commit 2796907
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions packages/auto_animated/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.2.2

* Fixed dispose in `AutoAnimatedIconButton`

## 1.2.1

* Fixed auto setting state on rebuild widget for `AutoAnimatedIconButton`
Expand Down
2 changes: 1 addition & 1 deletion packages/auto_animated/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.2.1"
version: "1.2.2"
boolean_selector:
dependency: transitive
description:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ class _AutoAnimatedIconButtonState extends State<AutoAnimatedIconButton>

@override
void dispose() {
super.dispose();
_animationController.dispose();
super.dispose();
}

@override
Expand Down
2 changes: 1 addition & 1 deletion packages/auto_animated/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: auto_animated
description: Widgets starting auto play animation when mounted. It is already possible to animate the list and icons.
version: 1.2.1
version: 1.2.2
author: Serge Shkurko <sergeshkurko@outlook.com>
homepage: https://github.com/rbcprolabs/flutter_plugins/tree/master/packages/auto_animated

Expand Down

0 comments on commit 2796907

Please sign in to comment.