Flutter. Animations without StatefulWidget
We will use the SimpleTickerProvider instead.
Originally posted on Medium
The problem.
The AnimationController class has a vsync constructor parameter, which should be an instance of TickerProvider.
Flutter has two [recommended] implementations of TickerProvider:
To obtain a TickerProvider, con...