flutter_particles 1.0.0+1 flutter_particles: ^1.0.0+1 copied to clipboard
A new Flutter package for creating particles background. This can be considered as the implementation of particle.js in Flutter.
Flutter Particles #
A Flutter widget for creating particles.
Intallation #
Add the dependencies needed to your pubspec.yaml
file.
Usage #
Import the file
import 'package:flutter_particles/particles.dart';
Calling the widget
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return new Scaffold(
backgroundColor: Colors.orange[50],
body: new Particles(
30, // Number of Particles
Colors.blue, // Color of Particles
),
);
}
}
Demo #