Skip to content

Commit

Permalink
Merge pull request #47 from TatsuUkraine/release-3.0.1
Browse files Browse the repository at this point in the history
Release 3.0.1 -> master
  • Loading branch information
TatsuUkraine authored Nov 9, 2020
2 parents 4b916c6 + ec0fc62 commit f77c668
Show file tree
Hide file tree
Showing 3 changed files with 8 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 @@
## [3.0.1] - 2020-11-09

- fixed positive list render on rebuild

## [3.0.0] - 2020-08-05

- stable v3 release
Expand Down
5 changes: 3 additions & 2 deletions lib/widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,9 @@ class InfiniteList extends StatefulWidget {
this.cacheExtent,
this.scrollDirection = Axis.vertical,
this.physics,
}) : _centerKey =
(direction == InfiniteListDirection.multi) ? UniqueKey() : null,
}) : _centerKey = (direction == InfiniteListDirection.multi)
? const ValueKey<String>('center-key')
: null,
super(key: key);

@override
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: >-
Can be customized or with config options or with override.
version: 3.0.0
version: 3.0.1
homepage: https://github.com/TatsuUkraine/flutter_sticky_infinite_list
repository: https://github.com/TatsuUkraine/flutter_sticky_infinite_list
issue_tracker: https://github.com/TatsuUkraine/flutter_sticky_infinite_list/issues
Expand Down

0 comments on commit f77c668

Please sign in to comment.