Skip to content

Instantly share code, notes, and snippets.

@mukireus
Last active February 14, 2020 18:38
Show Gist options
  • Save mukireus/dcebbc0d5b1b5c9ea87ef3cbb2095646 to your computer and use it in GitHub Desktop.
Save mukireus/dcebbc0d5b1b5c9ea87ef3cbb2095646 to your computer and use it in GitHub Desktop.
class UIBoxDecoration {
static BoxDecoration boxStyle = BoxDecoration(
boxShadow: [
BoxShadow(
color: Colors.blue,
blurRadius: 10.0,
spreadRadius: 1.0,
offset: Offset(
3.0,
3.0,
)),
],
borderRadius: BorderRadius.only(
bottomLeft: Radius.circular(UIHelper.dynamicWidth(150)),
bottomRight: Radius.circular(UIHelper.dynamicWidth(150))),
color: Colors.blue);
}
decoration: UIBoxDecoration.boxStyle, //Bu şekilde kullanabilirsiniz.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment