Created
April 25, 2020 07:35
-
-
Save felixblaschke/107fd8fdc32d94cba18ce1dedb0c6eac to your computer and use it in GitHub Desktop.
saw7.dart
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
| return LoopAnimation<double>( // <-- changed to "LoopAnimation" | |
| duration: 800.milliseconds, | |
| curve: Curves.easeInOut, | |
| tween: 0.0.tweenTo(200.0), | |
| builder: (context, child, value) { | |
| return Container(width: value, height: value, color: Colors.green); | |
| }, | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment