Skip to content

Commit

Permalink
Merge pull request #6 from Iconica-Development/0.1.1
Browse files Browse the repository at this point in the history
fix: fix animationcontroller dispose error
  • Loading branch information
Gorter-dev authored Apr 30, 2024
2 parents 65d8e31 + 10a28ce commit 50a2937
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.1

* Fixed Animationcontroller dispose error.

## 0.1.0

* Added styling options to the notifacation bell and adjacent counter.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/animated_notification_bell.dart
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ class _AnimatedNotificationBellState extends State<AnimatedNotificationBell>

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

@override
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_animated_widgets
description: A set of commonly used specific implicit animated widgets as addition on top of the default animated widgets
version: 0.1.0
version: 0.1.1

environment:
sdk: ">=2.18.4 <3.0.0"
Expand Down

0 comments on commit 50a2937

Please sign in to comment.