Created
January 21, 2020 18:12
-
-
Save JonathanMonga/37e5cc23a16df2a3f3aaf5252baa2b99 to your computer and use it in GitHub Desktop.
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
new Container( | |
width: 100, | |
height: 100, | |
decoration: new BoxDecoration( | |
boxShadow: [ | |
BoxShadow( | |
color: Colors.grey.withOpacity(.5), | |
blurRadius: 20.0, // soften the shadow | |
spreadRadius: 0.0, //extend the shadow | |
offset: Offset( | |
5.0, // Move to right 10 horizontally | |
5.0, // Move to bottom 10 Vertically | |
), | |
) | |
], | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment