2022-08-31 17:04:17 +03:00
2019-05-21 10:30:03 +04:30
2019-05-21 10:30:03 +04:30
2021-07-31 01:02:34 +03:00
2019-05-21 11:08:54 +04:30

Flutter Icon Shade

This package has been deprecated and renamed flutter_icon_shadow. Please use that package instead, which has additional features and is more maintained. Package page

Flutter Icon shadow

Forked from icon_shadow for null safety.

sample

How to use

1. Add dependencies to pubspec.yaml

flutter_icon_shade: ^2.0.2

2. Add icons

Row(
    mainAxisAlignment: MainAxisAlignment.center,
    children: <Widget>[
        IconShade(
            Icon(
                Icons.lightbulb_outline,
                color: Colors.lightBlueAccent,
                size: 36,
            ),
        ),
        IconShade(
            Icon(
                Icons.lightbulb_outline,
                color: Colors.lightBlueAccent,
                size: 36,
            ),
            shadowColor: Colors.lightBlueAccent.shade100,
        ),
        IconShade(
            Icon(
                Icons.lightbulb_outline,
                color: Colors.lightBlueAccent,
                size: 36,
            ),
            showShadow: false,
        ),
    ],
)
Description
icon shadow: add shadow to icon
Readme MIT 412 KiB
Languages
C++ 38.7%
CMake 31.7%
Dart 21.2%
HTML 3%
Swift 2.8%
Other 2.5%