Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ilikerobots/1531a65c46cec49b843e898fd68c9cea to your computer and use it in GitHub Desktop.
Save ilikerobots/1531a65c46cec49b843e898fd68c9cea to your computer and use it in GitHub Desktop.
Widget build(BuildContext context) {
return AnimatedBuilder(
animation: _controller,
builder: (context, child) {
return Container(
padding: EdgeInsets.all(24.0),
decoration: BoxDecoration(color: _colorAnim.value),
child: Text('Tween Sequence'),
);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment