water_drop

Creator: coderz1093

Last updated:

0 purchases

water_drop Image
water_drop Images
Add to Cart

Description:

water drop

Water Drop 💦💦💦 #
A simple package for adding water drops to your Widgets!
👇👇👇👇👇👇👇👇👇👇
Blog article with detailed explanation:
https://fidev.io/water-drop
👆👆👆👆👆👆👆👆👆👆

Why? #
Why not?!
How? #
Just wrap your widget in WaterDrop and provide params:
Widget build(BuildContext context) {
return WaterDrop(
child: _StaticCard(color: Colors.green),
params: [
WaterDropParam(top: 50, height: 70, left: 100, width: 50),
WaterDropParam(top: 10, height: 100, left: 280, width: 100),
WaterDropParam(top: 155, height: 35, left: 135, width: 35),
WaterDropParam(top: 135, height: 40, left: 250, width: 30),
WaterDropParam(top: 20, height: 40, left: 20, width: 40),
WaterDropParam(top: 140, height: 50, left: 15, width: 40),
WaterDropParam(top: 20, height: 30, left: 200, width: 30),
WaterDropParam(top: 120, height: 20, left: 360, width: 20),
],
);
}
copied to clipboard
Or if you want a single drop, use WaterDrop.single:
@override
Widget build(BuildContext context) {
return WaterDrop.single(
top: 50,
height: 70,
left: 100,
width: 50,
child: _StaticCard(color: Colors.green),
);
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.