diff --git a/packages/syncfusion_flutter_sliders/lib/src/slider.dart b/packages/syncfusion_flutter_sliders/lib/src/slider.dart index 17a5dcd4..9ea8917a 100644 --- a/packages/syncfusion_flutter_sliders/lib/src/slider.dart +++ b/packages/syncfusion_flutter_sliders/lib/src/slider.dart @@ -2035,7 +2035,9 @@ class _RenderSlider extends RenderBaseSlider implements MouseTrackerAnnotation { _state.tooltipAnimationController.status == AnimationStatus.completed && !shouldAlwaysShowTooltip) { - _state.tooltipAnimationController.reverse(); + if (_state.mounted) { + _state.tooltipAnimationController.reverse(); + } } }); }