easy_conffeti 0.1.5 copy "easy_conffeti: ^0.1.5" to clipboard
easy_conffeti: ^0.1.5 copied to clipboard

A customizable confetti animation library for Flutter with various particle shapes, animations, and color themes.

example/lib/main.dart

import 'dart:math' as math;
import 'package:easy_conffeti/easy_conffeti.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';

void main() {
  runApp(const MainApp());
}

class MainApp extends StatelessWidget {
  const MainApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Easy Confetti Designer',
      theme: ThemeData(
        primarySwatch: Colors.purple,
        useMaterial3: true,
        cardTheme: const CardTheme(
          elevation: 2,
          margin: EdgeInsets.symmetric(vertical: 6, horizontal: 8),
        ),
      ),
      debugShowCheckedModeBanner: false,
      home: ConfettiDesignerPage(),
    );
  }
}
11
likes
140
points
16
downloads

Publisher

unverified uploader

Weekly Downloads

A customizable confetti animation library for Flutter with various particle shapes, animations, and color themes.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on easy_conffeti