Skip to content

Instantly share code, notes, and snippets.

@flutter-devs
Created June 14, 2019 12:04
Show Gist options
  • Save flutter-devs/162d4585c70e71b7db7d78ac0800654f to your computer and use it in GitHub Desktop.
Save flutter-devs/162d4585c70e71b7db7d78ac0800654f to your computer and use it in GitHub Desktop.
AnimationController _animationController =
AnimationController(vsync: this, duration: Duration(seconds: 1));
Animation _animation = Tween(begin: 0.0, end: -0.15).animate(
CurvedAnimation(curve: Curves.ease, parent: _animationController));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment