Skip to content

Instantly share code, notes, and snippets.

@felixblaschke
Created April 25, 2020 07:35
Show Gist options
  • Select an option

  • Save felixblaschke/107fd8fdc32d94cba18ce1dedb0c6eac to your computer and use it in GitHub Desktop.

Select an option

Save felixblaschke/107fd8fdc32d94cba18ce1dedb0c6eac to your computer and use it in GitHub Desktop.
saw7.dart
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