Skip to content

Commit

Permalink
[auto_animated] Bump 1.3.0-dev.5
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeShkurko committed Dec 3, 2019
1 parent 49bb210 commit 851faea
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 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.3.0-dev.5

* Fixed error when timer not initialized

## 1.3.0-dev.4

* Fixed items auto additions after animation end
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.3.0-dev.4"
version: "1.3.0-dev.5"
boolean_selector:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion packages/auto_animated/lib/src/grid.dart
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ class _AutoAnimatedGridViewState extends State<AutoAnimatedGrid>
super.didUpdateWidget(oldWidget);
if (widget.itemCount < oldWidget.itemCount) {
init();
} else if (itemsCount < widget.itemCount && !_timer.isActive) {
} else if (itemsCount < widget.itemCount && !(_timer?.isActive ?? true)) {
init(from: itemsCount);
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/auto_animated/lib/src/list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ class AutoAnimatedListState extends State<AutoAnimatedList>
super.didUpdateWidget(oldWidget);
if (widget.itemCount < oldWidget.itemCount) {
init();
} else if (itemsCount < widget.itemCount && !_timer.isActive) {
} else if (itemsCount < widget.itemCount && !(_timer?.isActive ?? true)) {
init(from: itemsCount);
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/auto_animated/lib/src/sliver_grid.dart
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class _AutoAnimatedSliverGridState extends State<AutoAnimatedSliverGrid>
super.didUpdateWidget(oldWidget);
if (widget.itemCount < oldWidget.itemCount) {
init();
} else if (itemsCount < widget.itemCount && !_timer.isActive) {
} else if (itemsCount < widget.itemCount && !(_timer?.isActive ?? true)) {
init(from: itemsCount);
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/auto_animated/lib/src/sliver_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class _AutoAnimatedSliverListState extends State<AutoAnimatedSliverList>
super.didUpdateWidget(oldWidget);
if (widget.itemCount < oldWidget.itemCount) {
init();
} else if (itemsCount < widget.itemCount && !_timer.isActive) {
} else if (itemsCount < widget.itemCount && !(_timer?.isActive ?? true)) {
init(from: itemsCount);
}
}
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.3.0-dev.4
version: 1.3.0-dev.5
author: Serge Shkurko <[email protected]>
homepage: https://github.com/rbcprolabs/flutter_plugins/tree/master/packages/auto_animated

Expand Down

0 comments on commit 851faea

Please sign in to comment.