animated_wb_splash_screen 1.0.0 copy "animated_wb_splash_screen: ^1.0.0" to clipboard
animated_wb_splash_screen: ^1.0.0 copied to clipboard

Flutter package to implement an animated splash screen.

Animated White-Black Splash Screen #

Animated WB Splash Screen package lets you add an animated splash screen to your Flutter app.

Features #

The AnimatedWBSplashScreen widget is built to be the entry point of any Flutter app (Splash Screen), replacing the default opening method. By using the appName and nextPageproperties, you can provide the name of your app and the next page to be displayed.

The package will handle the animation by itself.

animated_wb_splash_screen


Getting started #

  1. Add the latest version of package to your pubspec.yaml (and run dart pub get):
dependencies:
  animated_wb_splash_screen: ^1.0.0
  1. Import the package and use it in your Flutter App.
import 'package:animated_wb_splash_screen/animated_wb_splash_screen.dart';

Usage #

There are a number of properties that you can modify:

  • appName (your app name)
  • nextPage (next page to be displayed)

Example Usage ( complete with all params ):

class SplashScreen extends StatefulWidget {
  const SplashScreen({Key? key}) : super(key: key);

@override
State<SplashScreen> createState() => \_SplashScreenState();
}

class \_SplashScreenState extends State<SplashScreen> {
@override
Widget build(BuildContext context) {
return const AnimatedWBSplashScreen(appName: "ULFHRAFN", nextPage: NextPage());
}
}

Here's what it looks like:

https://user-images.githubusercontent.com/68671238/161436024-0adc8f7e-34d8-4163-a6f0-ea6349267666.mp4


Next Goals #

We are working on some improvements including:

  • Make the app name style customizable.
  • Make the splash colors customizable.

Issues & Feedback #

Please file an issue! to send feedback or report a bug. Thank you!

3
likes
110
pub points
49%
popularity

Publisher

unverified uploader

Flutter package to implement an animated splash screen.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on animated_wb_splash_screen