Unverified Commit 8c05e8c1 authored by Darren Austin's avatar Darren Austin Committed by GitHub

Added a missing dispose of an AnimationController that was causing a ticker leak. (#32843)

parent c864adcd
...@@ -736,6 +736,7 @@ class _MonthPickerState extends State<MonthPicker> with SingleTickerProviderStat ...@@ -736,6 +736,7 @@ class _MonthPickerState extends State<MonthPicker> with SingleTickerProviderStat
@override @override
void dispose() { void dispose() {
_timer?.cancel(); _timer?.cancel();
_chevronOpacityController?.dispose();
_dayPickerController?.dispose(); _dayPickerController?.dispose();
super.dispose(); super.dispose();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment