Created
July 28, 2019 15:36
-
-
Save smokelaboratory/9e32f40f2cc9da4df7c3cf62e70e4083 to your computer and use it in GitHub Desktop.
Bottom Sheet animation
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
| AnimatedBuilder( | |
| animation: _animation, | |
| builder: (context, _) { | |
| return Transform( | |
| transform: Matrix4.translationValues( | |
| 0.0, width * _animation.value, 0.0), | |
| child: Container( | |
| width: width, | |
| child: GestureDetector( | |
| behavior: HitTestBehavior.opaque, | |
| onTap: () {}, | |
| child: widget.child), | |
| ), | |
| ); | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment