fix: prevent early dispose of CardSwiperController (#38)
Co-authored-by: Kalle Johansson <kalle.johansson.ext@Knowunity-0005.local>
This commit is contained in:
parent
9161c93034
commit
3b0796ca48
|
|
@ -1,3 +1,6 @@
|
|||
## [7.0.1]
|
||||
|
||||
- Prevents `CardSwiperController` to be disposed by `CardSwiper`.
|
||||
|
||||
## [7.0.0]
|
||||
|
||||
|
|
|
|||
|
|
@ -65,7 +65,6 @@ class _CardSwiperState<T extends Widget> extends State<CardSwiper>
|
|||
@override
|
||||
void dispose() {
|
||||
_animationController.dispose();
|
||||
widget.controller?.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ name: flutter_card_swiper
|
|||
description: This is a Tinder-like card swiper package. It allows you to swipe left, right, up, and down and define your own business logic for each direction.
|
||||
homepage: https://github.com/ricardodalarme/flutter_card_swiper
|
||||
issue_tracker: https://github.com/ricardodalarme/flutter_card_swiper/issues
|
||||
version: 7.0.0
|
||||
version: 7.0.1
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
|
|
|
|||
Loading…
Reference in New Issue