Last updated:
0 purchases
flutter particles
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';
copied to clipboard
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
),
);
}
}
copied to clipboard
Demo #
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.