Skip to content

Instantly share code, notes, and snippets.

@JonathanMonga
Created January 21, 2020 18:12
Show Gist options
  • Save JonathanMonga/37e5cc23a16df2a3f3aaf5252baa2b99 to your computer and use it in GitHub Desktop.
Save JonathanMonga/37e5cc23a16df2a3f3aaf5252baa2b99 to your computer and use it in GitHub Desktop.
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