Last active
February 15, 2020 06:13
-
-
Save slamdon/e8410ff77bc116fb84fc1b2a625aa17a to your computer and use it in GitHub Desktop.
Stack
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
| return Container( | |
| child: ClipRRect( | |
| borderRadius: BorderRadius.circular(20), | |
| child: Stack( | |
| fit: StackFit.expand, | |
| children: <Widget>[ | |
| image, | |
| imageOverlayGradient, | |
| _buildTextContainer(), | |
| ], | |
| ), | |
| ), | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment