Created
May 22, 2020 11:03
-
-
Save ilikerobots/1531a65c46cec49b843e898fd68c9cea to your computer and use it in GitHub Desktop.
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
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