Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [1.0.1]

* Fix late _timer was not initialized but called

## [1.0.0]

* Migraate to Nullsafety
Expand Down
2 changes: 1 addition & 1 deletion lib/src/scroll_gallery.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class _ScrollGalleryState extends State<ScrollGallery>
with SingleTickerProviderStateMixin {
late final ScrollController _scrollController;
late final PageController _pageController;
late final Timer? _timer;
Timer? _timer;
int _currentIndex = 0;
bool _reverse = false;
bool _lock = false;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors:
- Anh Nguyen <[email protected]>
homepage: http://github.com/foodtiny/flutter_scroll_gallery
description: A Flutter package that help you to create Image carousels with scroll thumbnail in bottom
version: 1.0.0
version: 1.0.1

environment:
sdk: '>=2.12.0 <3.0.0'
Expand Down