tweener
tweener copied to clipboard
callbacks not cleaned up when removing tweens
Callbacks still seem to fire after removing tweens, which can throw errors. Quick workaround without changing package is replacing tween callbacks with blank functions before stopping/removing:
myTween.onUpdate((_){});
myTween.onComplete((_){});
#mark