Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ilikerobots/cedee1333df5711e4cf646925e0d1385 to your computer and use it in GitHub Desktop.
Save ilikerobots/cedee1333df5711e4cf646925e0d1385 to your computer and use it in GitHub Desktop.
Animatable<Color> bgColor = TweenSequence<Color>([
TweenSequenceItem(
weight: 1.0,
tween: ColorTween(begin: Colors.red, end: Colors.blue),
),
TweenSequenceItem(
weight: 1.0,
tween: ColorTween(begin: Colors.blue, end: Colors.green),
),
TweenSequenceItem(
weight: 1.0,
tween: ColorTween(begin: Colors.green, end: Colors.yellow),
),
TweenSequenceItem(
weight: 1.0,
tween: ColorTween(begin: Colors.yellow, end: Colors.red),
),
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment