parallax_rain 1.1.1 copy "parallax_rain: ^1.1.1" to clipboard
parallax_rain: ^1.1.1 copied to clipboard

Use this package to create cool 3D rain effects. Customize with multiple colors, different raindrop speeds, drop trail effects and more!

Pub Version License

Parallax Rain #

Create a cool 3D rain effect, with plenty of customization!

Sample screenshot

Sample video

Installation #

1. Depend on it #

Add this to your package's pubspec.yaml file:

dependencies:
    parallax_rain:

2. Install it #

You can install packages from the command line:

$ pub get
..

Alternatively, your editor might support pub. Check the docs for your editor to learn more.

3. Import it #

Now in your Flutter code, you can use:

import 'package:parallax_rain/parallax_rain.dart';

Usage #

If you want to give YourWidget a 3D rain background, simple wrap it with the ParallaxRain widget, with YourWidget as the child parameter. You can also have the rain effect in the foreground, use multiple drop colors, adjust the speed, add trails to your drops and lots more!

For example:

ParallaxRain(
    dropColors: [
        Colors.red,
        Colors.green,
        Colors.blue,
        Colors.yellow,
        Colors.brown,
        Colors.blueGrey
    ],
    child: Text(
        "Multicolor",
    ),
),

A full example can be found in the example directory

About me #

Visit my LinkedIn at https://www.linkedin.com/in/zaca

I'm also the author of the Flutter glass package that allows you to convert any flutter widget into a glass/frosted glass version of itself, check it out at https://pub.dev/packages/glass

66
likes
130
pub points
80%
popularity

Publisher

verified publisherzac.ac

Use this package to create cool 3D rain effects. Customize with multiple colors, different raindrop speeds, drop trail effects and more!

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on parallax_rain