Last updated:
0 purchases
animated wb 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.
Getting started #
Add the latest version of package to your pubspec.yaml (and run dart pub get):
dependencies:
animated_wb_splash_screen: ^1.0.0
copied to clipboard
Import the package and use it in your Flutter App.
import 'package:animated_wb_splash_screen/animated_wb_splash_screen.dart';
copied to clipboard
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());
}
}
copied to clipboard
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!
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.