Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@deven98
Created May 26, 2019 18:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deven98/932a394fb0b548b967aa66bf19800994 to your computer and use it in GitHub Desktop.
Save deven98/932a394fb0b548b967aa66bf19800994 to your computer and use it in GitHub Desktop.
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Animation Demo"),
),
body: Center(
child: Container(
height: sizeAnimation.value,
width: sizeAnimation.value,
color: colorAnimation.value,
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment