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 dc13fd5 commit e05ae3cCopy full SHA for e05ae3c
packages/flutter/lib/src/material/ink_well.dart
@@ -847,6 +847,7 @@ class _InkResponseState extends State<_InkResponseStateWidget>
847
void dispose() {
848
FocusManager.instance.removeHighlightModeListener(handleFocusHighlightModeChange);
849
statesController.removeListener(handleStatesControllerChange);
850
+ internalStatesController?.dispose();
851
super.dispose();
852
}
853
packages/flutter/lib/src/widgets/scroll_position.dart
@@ -976,6 +976,7 @@ abstract class ScrollPosition extends ViewportOffset with ScrollMetrics {
976
977
activity?.dispose(); // it will be null if it got absorbed by another ScrollPosition
978
_activity = null;
979
+ isScrollingNotifier.dispose();
980
981
982
0 commit comments