Last updated:
0 purchases
icon shadow
Icon shadow #
Flutter Icon shadow
how to use:
1. add dependencies to pubspec.yaml:
icon_shadow: ^1.0.1
copied to clipboard
2. add icons:
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
IconShadowWidget(Icon(Icons.lightbulb_outline,
color: Colors.lightBlueAccent, size: 36)),
IconShadowWidget(Icon(Icons.lightbulb_outline,
color: Colors.lightBlueAccent, size: 36),shadowColor: Colors.lightBlueAccent.shade100,),
IconShadowWidget(Icon(Icons.lightbulb_outline,
color: Colors.lightBlueAccent, size: 36),showShadow: false,)
],
)
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.