Last active
December 29, 2018 14:57
-
-
Save kishan2612/c988dcbbe447fb584fb042e98db68bef to your computer and use it in GitHub Desktop.
frontview wrap
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 _frontView() { | |
return SlideTransition( | |
position: _getSlideAnimation(), | |
child: ScaleTransition( | |
alignment: Alignment.centerLeft, | |
scale: _getScaleAnimation(), | |
child: _frontViewBody(), | |
)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment