0 purchases
csshadow
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,
),
),
copied to clipboard
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.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.