Skip to content

Instantly share code, notes, and snippets.

@shubie
Created January 3, 2019 14:01
Show Gist options
  • Save shubie/958b7436622377b8d535dde4331c9ef4 to your computer and use it in GitHub Desktop.
Save shubie/958b7436622377b8d535dde4331c9ef4 to your computer and use it in GitHub Desktop.
Opacity buildMenuItem(IconData icon, String title,
{double opacity = 0.3, Color color = Colors.black}) {
return Opacity(
opacity: opacity,
child: Center(
child: Column(
children: <Widget>[
SizedBox(
height: 20.0,
),
Icon(
icon,
size: 50.0,
color: color,
),
SizedBox(
height: 10.0,
),
Text(title,
style: TextStyle(
fontWeight: FontWeight.w500, fontSize: 14.0, color: color)),
SizedBox(
height: 10.0,
),
],
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment