animated_splash_container 0.0.1 copy "animated_splash_container: ^0.0.1" to clipboard
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



3
likes
0
points
25
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter widget that creates animated splash screens with customizable colors

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_screenutil

More

Packages that depend on animated_splash_container