/smooth_shadow_package

repository for package smooth_shadow , all contributions or pull requests are welcome

Primary LanguageDartMIT LicenseMIT

smooth_shadow

A package that gives your cards or any other widgets a smooth shadow, it also supports adding shadow to text widgets.

Getting Started

1. Install Package

smooth_shadow: <latest_version>

2. Use Package

SmoothCard

To add shadows to your Card, Cotainer or any other Widget wrap it with SmoothCard

SmoothCard(
    child: MyWidget(),
),
TextShadow

To add shadows to your Text() widget, wrap it with TextShadow .

TextShadow(
    child: Text("Hello world"),
),

check the example section for more details.

all contributions, or suggestions bug fixes are welcome through github repo.