|
|
|
|
|
|
this + " was disposed with an active Ticker.\n" + |
|
|
|
this.GetType() + " created a Ticker via its SingleTickerProviderStateMixin, but at the time " + |
|
|
|
"dispose() was called on the mixin, that Ticker was still active. The Ticker must " + |
|
|
|
"be disposed before calling super.dispose(). Tickers used by AnimationControllers " + |
|
|
|
"be disposed before calling base.dispose(). Tickers used by AnimationControllers " + |
|
|
|
"should be disposed by calling dispose() on the AnimationController itself. " + |
|
|
|
"Otherwise, the ticker will leak.\n" + |
|
|
|
"The offending ticker was: " + this._ticker.toString(debugIncludeStack: true) |
|
|
|
|
|
|
this.GetType() + |
|
|
|
" 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 " + |
|
|
|
"be disposed before calling base.dispose(). Tickers used by AnimationControllers " + |
|
|
|
"should be disposed by calling dispose() on the AnimationController itself. " + |
|
|
|
"Otherwise, the ticker will leak.\n" + |
|
|
|
"The offending ticker was: " + ticker.toString(debugIncludeStack: true) |
|
|
|