snowfall_or_anythings 0.0.4 copy "snowfall_or_anythings: ^0.0.4" to clipboard
snowfall_or_anythings: ^0.0.4 copied to clipboard

A Flutter package to create snowfall or any kind of falling widgets animations.

example/lib/main.dart

import 'package:example/pages/custom_paint_page.dart';
import 'package:example/pages/snow_page.dart';
import 'package:example/pages/widget_page.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Particle Demo',
      theme: ThemeData.dark(),
      home: const MainPage(),
    );
  }
}

class MainPage extends StatelessWidget {
  const MainPage({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Particle Effects Demo'),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            ElevatedButton(
              onPressed: () {
                Navigator.push(
                  context,
                  MaterialPageRoute(
                    builder: (context) => const SnowPage(),
                  ),
                );
              },
              child: const Text('Snowfall Demo'),
            ),
            const SizedBox(height: 20),
            ElevatedButton(
              onPressed: () {
                Navigator.push(
                  context,
                  MaterialPageRoute(
                    builder: (context) => const CustomPaintpage(),
                  ),
                );
              },
              child: const Text('CustomPainter Demo'),
            ),
            const SizedBox(height: 20),
            ElevatedButton(
              onPressed: () {
                Navigator.push(
                  context,
                  MaterialPageRoute(
                    builder: (context) => const WidgetParticlePage(),
                  ),
                );
              },
              child: const Text('Widget Particle Demo'),
            ),
          ],
        ),
      ),
    );
  }
}

class CustomPaintDemo {
  const CustomPaintDemo();
}
2
likes
160
points
86
downloads

Publisher

verified publishervaldir.dev.br

Weekly Downloads

A Flutter package to create snowfall or any kind of falling widgets animations.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on snowfall_or_anythings