flutter_custom_animations 1.0.0
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.
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(),
);
}
}