flutter_custom_animations 1.0.0 copy "flutter_custom_animations: ^1.0.0" to clipboard
flutter_custom_animations: ^1.0.0 copied to clipboard

A reusable Flutter animation framework providing customizable animation effects, animated widgets, page transitions, builders, and widget extensions.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'screens/home_screen.dart';
import 'utils/styles.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Custom Animation Showcase',
      debugShowCheckedModeBanner: false,
      theme: AppStyles.theme,
      home: const HomeScreen(),
    );
  }
}
3
likes
160
points
33
downloads

Documentation

API reference

Publisher

verified publishersureshbabum.in

Weekly Downloads

A reusable Flutter animation framework providing customizable animation effects, animated widgets, page transitions, builders, and widget extensions.

Repository (GitHub)
View/report issues
Contributing

Topics

#flutter #animation #ui #transitions #widget

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_custom_animations