tao-zhi-1992/flutter_confetti
🎉 confetti animation in Flutter🎉
- Stars
- 147
- Forks
- 19
- Last push (UTC)
- Jul 31, 2026
- Project status
- Active
LanguagesDartC++CMakeRubySwiftHTMLCKotlinObjective-C
Dependencies used
Dependency list 3 items
- flutter
{"sdk":"flutter"} - flutter_testDevelopment
{"sdk":"flutter"} - flutter_lintsDevelopment
^2.0.0
Original README
English project snapshot. Visit GitHub for the latest content.
Expand / collapse project README
pub package likes pub points GitHub stars license
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.