flutter_confetti 0.9.2
flutter_confetti: ^0.9.2 copied to clipboard
Confetti animation in Flutter, a powerful and easy-to-use library to show amazing confetti effects.
Easily create confetti animations in Flutter.
Install #
flutter pub add flutter_confetti
Or add it to your pubspec.yaml:
dependencies:
flutter_confetti: ^0.9.2
Quick start #
import 'package:flutter_confetti/flutter_confetti.dart';
Confetti.launch(
context,
options: const ConfettiOptions(
particleCount: 100,
spread: 70,
y: 0.6,
),
);
Thanks #
This package was totally inspired by canvas-confetti, a wonderful confetti animation library for the browser. I just did a little work to bring it to Flutter.