animated_splash_container 0.0.1
animated_splash_container: ^0.0.1 copied to clipboard
A Flutter widget that creates animated splash screens with customizable colors
Features #
TODO: animated containers that can be typically used in splash screens
Getting started #
TODO: List prerequisites and provide or point to information on how to start using the package.
Usage #
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) { SystemChrome.setPreferredOrientations([ DeviceOrientation.portraitUp, DeviceOrientation.portraitDown, ]); return MaterialApp( title: 'Animated Container Demo', theme: ThemeData( colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), useMaterial3: true, ), home: const SplashScreen(), ); } }
class SplashScreen extends StatefulWidget { const SplashScreen({super.key});
@override State
class _SplashScreenState extends State