Skip to content

Instantly share code, notes, and snippets.

@av
Created January 13, 2020 15:38
Show Gist options
  • Save av/cf51d3d781e7b812a5ab3338a28e56ec to your computer and use it in GitHub Desktop.
Save av/cf51d3d781e7b812a5ab3338a28e56ec to your computer and use it in GitHub Desktop.
Flutter: neu
return Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(bevel),
color: Colors.grey.shade200,
boxShadow: [
BoxShadow(
blurRadius: bevel,
offset: -blurOffset,
color: Colors.white,
),
BoxShadow(
blurRadius: bevel,
offset: blurOffset,
color: Colors.grey.shade400
)
]),
child: child,
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment