Skip to content

Instantly share code, notes, and snippets.

@vishweshsoni
Last active February 9, 2020 13:08
Show Gist options
  • Save vishweshsoni/6ace03e7e5937fc6d112d9e3131f544b to your computer and use it in GitHub Desktop.
Save vishweshsoni/6ace03e7e5937fc6d112d9e3131f544b to your computer and use it in GitHub Desktop.
covex
//Creating convex effect
Widget convex(String txt) {
return Container(
width: MediaQuery.of(context).size.width / 4,
height: MediaQuery.of(context).size.height / 8,
child: Center(child: Icon(Icons.favorite_border)),
decoration: BoxDecoration(
color: Color(0xFFf8fbf8),
borderRadius: BorderRadius.all(Radius.circular(30)),
boxShadow: [
BoxShadow(
color: Colors.grey[200],
offset: Offset(10.0, 10.0),
blurRadius: 10.0,
spreadRadius: 2.0),
BoxShadow(
color: Colors.white,
offset: Offset(-10.0, -10.0),
blurRadius: 10.0,
spreadRadius: 2.0)
]),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment