srtraj / dropdown_textfield

custom dropdown
MIT License
8 stars 48 forks source link

_DropDownTextFieldState#fa178(tickers: tracking 1 ticker) was disposed with an active Ticker. #52

Closed postboxat18 closed 5 months ago

postboxat18 commented 5 months ago

_DropDownTextFieldState created a Ticker via its TickerProviderStateMixin, but at the time dispose() was called on the mixin, that Ticker was still active. All Tickers must be disposed before calling super.dispose().

Tickers used by AnimationControllers should be disposed by calling dispose() on the AnimationController itself. Otherwise, the ticker will leak.