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

High-performance, high-customizable, and easy-to-use "Thanos Snap" effect for Flutter.

example/lib/main.dart

import 'package:example/animated_list_example_screen.dart';
import 'package:example/animation_controller_example_screen.dart';
import 'package:example/menu_screen.dart';
import 'package:flutter/material.dart';

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Snap Effect Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      routes: {
        '/': (context) => const MenuScreen(),
        AnimationControllerExampleScreen.routeName: (context) =>
            const AnimationControllerExampleScreen(),
        AnimatedListExampleScreen.routeName: (context) =>
            const AnimatedListExampleScreen(),
      },
    );
  }
}
copied to clipboard
43
likes
0
points
558
downloads

Publisher

unverified uploader

Weekly Downloads

2024.06.01 - 2025.04.26

High-performance, high-customizable, and easy-to-use "Thanos Snap" effect for Flutter.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on thanos_snap_effect