├── .ci_templates └── flutter_netlify_build.sh ├── .fvm └── fvm_config.json ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── display └── Confetti Screenshot.png ├── example ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── lib │ ├── main.dart │ └── performance_test.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── lib ├── confetti.dart └── src │ ├── confetti.dart │ ├── constants.dart │ ├── enums │ ├── blast_directionality.dart │ └── confetti_controller_state.dart │ ├── helper.dart │ ├── particle.dart │ └── particle_stats.dart ├── melos.yaml ├── pubspec.lock ├── pubspec.yaml └── test └── confetti_test.dart /.ci_templates/flutter_netlify_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/.ci_templates/flutter_netlify_build.sh -------------------------------------------------------------------------------- /.fvm/fvm_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/.fvm/fvm_config.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /display/Confetti Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/display/Confetti Screenshot.png -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/example/README.md -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/performance_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/example/lib/performance_test.dart -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/example/test/widget_test.dart -------------------------------------------------------------------------------- /lib/confetti.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/lib/confetti.dart -------------------------------------------------------------------------------- /lib/src/confetti.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/lib/src/confetti.dart -------------------------------------------------------------------------------- /lib/src/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/lib/src/constants.dart -------------------------------------------------------------------------------- /lib/src/enums/blast_directionality.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/lib/src/enums/blast_directionality.dart -------------------------------------------------------------------------------- /lib/src/enums/confetti_controller_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/lib/src/enums/confetti_controller_state.dart -------------------------------------------------------------------------------- /lib/src/helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/lib/src/helper.dart -------------------------------------------------------------------------------- /lib/src/particle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/lib/src/particle.dart -------------------------------------------------------------------------------- /lib/src/particle_stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/lib/src/particle_stats.dart -------------------------------------------------------------------------------- /melos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/melos.yaml -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/confetti_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/flutter_confetti/HEAD/test/confetti_test.dart --------------------------------------------------------------------------------