We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de4341c commit 05af6ccCopy full SHA for 05af6cc
2 files changed
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## 0.8.6 (2026-01-08)
2
+
3
+- fixes [#67](https://github.com/splashbyte/animated_toggle_switch/issues/67)
4
5
## 0.8.5 (2025-04-28)
6
7
- adds `padding` to `AnimatedToggleSwitch` ([#65](https://github.com/splashbyte/animated_toggle_switch/issues/65))
lib/src/widgets/custom_animated_toggle_switch.dart
@@ -976,7 +976,7 @@ class _CustomAnimatedToggleSwitchState<T>
976
977
/// Cancels drag because of loading or inactivity
978
void _cancelDrag() {
979
- _setAnimationInfo(_animationInfo.none());
+ _setAnimationInfo(_animationInfo.none(current: _positionValue));
980
_checkValuePosition();
981
}
982
0 commit comments