Skip to content

Instantly share code, notes, and snippets.

@MarcinusX
Created September 3, 2018 04:36
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 MarcinusX/1f6c175cc6786b73097145ad839c00a2 to your computer and use it in GitHub Desktop.
Save MarcinusX/1f6c175cc6786b73097145ad839c00a2 to your computer and use it in GitHub Desktop.
Widget _buildPlane() {
return AnimatedBuilder(
animation: _planeTravelAnimation,
child: Column(
children: <Widget>[
AnimatedPlaneIcon(animation: _planeSizeAnimation),
Container(
width: 2.0,
height: 240.0,
color: Color.fromARGB(255, 200, 200, 200),
),
],
),
[...]
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment