Created
December 29, 2018 14:50
-
-
Save kishan2612/05970450935f7e2987c0dc575560a34e to your computer and use it in GitHub Desktop.
custom navigation drawer front view animations
This file contains 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
/* | |
FrontView Slide Animation | |
*/ | |
Animation<Offset> _getSlideAnimation() { | |
return Tween(begin: Offset(0.85, 0.0), end: Offset(0, 0)).animate( | |
CurvedAnimation(parent: widget._controller, curve: Curves.linear)); | |
} | |
/* | |
Front View Scale Animation | |
*/ | |
Animation<double> _getScaleAnimation() { | |
return Tween(begin: 0.7, end: 1.0).animate( | |
CurvedAnimation(parent: widget._controller, curve: Curves.linear)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment