Skip to content

Commit

Permalink
Release :: v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iamSahdeep committed Sep 27, 2019
1 parent 6206713 commit 13a3075
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
#ChangeLog

## 1.2.0
* CustomIcon [5cbd32c583126e14d135ad3e9d6e6ea8221edb3d](https://github.com/iamSahdeep/liquid_swipe_flutter/commit/5cbd32c583126e14d135ad3e9d6e6ea8221edb3d)
* Enable page recurrence [fdbcfc1e14e148201685fc401ea2505cc26a5cd4](https://github.com/iamSahdeep/liquid_swipe_flutter/commit/fdbcfc1e14e148201685fc401ea2505cc26a5cd4)
* New Clipper : CircularReveal [ad844b2e9c0cdaa124e2a2a76caad5cc35dce67b](https://github.com/iamSahdeep/liquid_swipe_flutter/commit/ad844b2e9c0cdaa124e2a2a76caad5cc35dce67b)


## 1.1.0
* Added Initial page attribute. [cda6de80113502f17da8085d95c5eaea543f42b7](https://github.com/iamSahdeep/liquid_swipe_flutter/commit/cda6de80113502f17da8085d95c5eaea543f42b7)
* Added Slide Icon on pages. [32680cdc4571a705b4e7f11467b450e37016807d](https://github.com/iamSahdeep/liquid_swipe_flutter/commit/32680cdc4571a705b4e7f11467b450e37016807d)
* Other Minor Fixes. [52d159403525261dbfaa99a52af718a1ddc8274f](https://github.com/iamSahdeep/liquid_swipe_flutter/commit/52d159403525261dbfaa99a52af718a1ddc8274f)

## 1.0.2

* Minor spell changes
Expand Down
Binary file modified android/.idea/caches/gradle_models.ser
Binary file not shown.
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.1.0"
version: "1.2.0"
matcher:
dependency: transitive
description:
Expand Down
4 changes: 0 additions & 4 deletions lib/liquid_swipe.dart
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ class _LiquidSwipe extends State<LiquidSwipe> with TickerProviderStateMixin {
slideDirection = event.direction;
slidePercent = event.slidePercent;


// making pages to be in loop
if (widget.enableLoop) {
//conditions on slide direction
Expand All @@ -112,7 +111,6 @@ class _LiquidSwipe extends State<LiquidSwipe> with TickerProviderStateMixin {
nextPageIndex = activePageIndex;
}
}

}
//if the user has done dragging
else if (event.updateType == UpdateType.doneDragging) {
Expand All @@ -135,7 +133,6 @@ class _LiquidSwipe extends State<LiquidSwipe> with TickerProviderStateMixin {
);

nextPageIndex = activePageIndex;

}
//Run the animation
animatedPageDragger.run();
Expand Down Expand Up @@ -211,4 +208,3 @@ class _LiquidSwipe extends State<LiquidSwipe> with TickerProviderStateMixin {
});
}
}

2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: liquid_swipe
description: A Flutter plugin to implement liquid Swipe effect to provided containers.
version: 1.1.0
version: 1.2.0
author: Sahdeep Singh <[email protected]>
homepage: https://github.com/iamSahdeep/liquid_swipe_flutter

Expand Down

0 comments on commit 13a3075

Please sign in to comment.