animated_splash_screen 1.3.0 copy "animated_splash_screen: ^1.3.0" to clipboard
animated_splash_screen: ^1.3.0 copied to clipboard

The easiest way to create your animated splash screen in a fully customizable way.

example/main.dart

import 'package:animated_splash_screen/animated_splash_screen.dart';
import 'package:flutter/material.dart';
import 'package:page_transition/page_transition.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        title: 'Clean Code',
        home: AnimatedSplashScreen(
            duration: 3000,
            splash: Icons.home,
            nextScreen: MainScreen(),
            splashTransition: SplashTransition.fadeTransition,
            pageTransitionType: PageTransitionType.scale,
            backgroundColor: Colors.blue));
  }
}

class MainScreen extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Container(
      color: Colors.redAccent,
    );
  }
}
661
likes
130
pub points
99%
popularity

Publisher

verified publishercleancode.dev

The easiest way to create your animated splash screen in a fully customizable way.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, page_transition

More

Packages that depend on animated_splash_screen