flutter_custom_splash_screen 0.0.1
flutter_custom_splash_screen: ^0.0.1 copied to clipboard
Customized Splash Screen
With this package you can create your own customized Splash Screen.
class CompanionApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: SplashScreen(
bgImage: "lib/assets/images/bg.png",
logoImage: "lib/assets/images/logo.png",
logoHeight: 90,
logoWidth: 90,
logoColor: newButtonColor,
logoBgColor: textColor,
textColor: textColor),
);
}
}