csshadow 0.0.2 copy "csshadow: ^0.0.2" to clipboard
csshadow: ^0.0.2 copied to clipboard

This will help you to give a shadow to any shape. That you may create in any project. You can give shadow to any clip or path that you draw.

This pacakge will help to drop shadow to any carve that designed with CustomClip and also can customise th design

Features #

Easy to use and customise.

Getting started #

Git repo link. start using the package.

Stack(
        children: [
          CsShadow(
            shadow: const BoxShadow(
              color: Colors.black,
              blurRadius: 2.0,
              offset: Offset(0, 4),
              spreadRadius: 5,
            ),
            clipper: BezierClipper(1),
            child: Container(
              color: const Color.fromRGBO(255, 91, 53, 1),
              height: height,
            ),
          ),
        ],
      ),```

## Usage
`import the pacakge and call CsShadow and you will notifiy with the perameters that required and you are good to go`

```dart
 CsShadow(
            shadow: const BoxShadow(
              color: Colors.black,
              blurRadius: 2.0,
              offset: Offset(0, 4),
              spreadRadius: 5,
            ),
            clipper: BezierClipper(1),
            child: Container(
              color: Color.fromRGBO(255, 91, 53, 1),
              height: height,
            ),
          ),

Additional information #

TODO: Tell users more about the package: where to find more information, how to contribute to the package, how to file issues, what response they can expect from the package authors, and more.

1
likes
110
pub points
59%
popularity

Publisher

unverified uploader

This will help you to give a shadow to any shape. That you may create in any project. You can give shadow to any clip or path that you draw.

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on csshadow