Created
November 9, 2020 23:56
-
-
Save AlabasterAxe/f17173d60eb92b77b5b2423a6d4c1ae7 to your computer and use it in GitHub Desktop.
Starting our game animation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @override | |
| void initState() { | |
| super.initState(); | |
| worldController = | |
| AnimationController(vsync: this, duration: Duration(days: 99)); | |
| worldController.addListener(_update); | |
| worldController.forward(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment