animated_splash_screen 1.0.1+2 copy "animated_splash_screen: ^1.0.1+2" to clipboard
animated_splash_screen: ^1.0.1+2 copied to clipboard

outdated

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,
    );
  }
}
715
likes
0
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

License

unknown (license)

Dependencies

flutter, page_transition

More

Packages that depend on animated_splash_screen