Update jumping_dots.dart#1
Conversation
Animate dots using single AnimationController
|
I believe using single AnimationController and SingleTickerProviderStateMixin may improve animation performance. What do you think? |
|
The animation became cool, but my idea was to animate the next dot when the previous one is half way, therefore I used TickerProvider instead of SingleTicker provider. We can see what can be done to retain my idea and make the animations smoother. Thanks btw! |
|
I think that effect can be achieved by playing with the |
|
We need more than one animation controller for that I guess. Or maybe I am wrong. To give the wave a helix type animation, each of the previous dot needs to be animated before the next dot's animation is completed. If that can be done in _generateDotAnimation by any means, that would be great! |
|
I hope I've done math right. Check |
Animate dots using single AnimationController