Last updated:
0 purchases
particle forked
Flutter Particles #
A package that provides an easy way to add particles animation in Flutter project.
Getting Started #
You should ensure that you add the following dependency in your Flutter project.
dependencies:
particles_flutter: "^0.1.1"
copied to clipboard
You should then run flutter packages upgrade or update your packages in IntelliJ.
How to use #
CircularParticle(
key: UniqueKey(),
awayRadius: 80,
numberOfParticles: 200,
speedOfParticles: 1,
height: screenHeight,
width: screenWidth,
onTapAnimation: true,
particleColor: Colors.white.withAlpha(150),
awayAnimationDuration: Duration(milliseconds: 600),
maxParticleSize: 8,
isRandSize: true,
isRandomColor: true,
randColorList: [
Colors.red.withAlpha(210),
Colors.white.withAlpha(210),
Colors.yellow.withAlpha(210),
Colors.green.withAlpha(210)
],
awayAnimationCurve: Curves.easeInOutBack,
enableHover: true,
hoverColor: Colors.white,
hoverRadius: 90,
connectDots: false, //not recommended
),
copied to clipboard
Contributions #
Feel free to contribute to this project.
If you find a bug or want a feature, but don't know how to fix/implement it, please fill an issue.
If you fixed a bug or implemented a new feature, please send a pull request.
If you want to contact me, Please send me a short DM on Twitter.
# particle
# particle
# particle_forked
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.