EasySplashScreen constructor

EasySplashScreen({
  1. Color loaderColor = Colors.black,
  2. Future<Object>? futureNavigator,
  3. Widget? navigator,
  4. int durationInSeconds = 3,
  5. double logoSize = 50,
  6. Text? title,
  7. Color backgroundColor = Colors.white,
  8. Text loadingText = const Text(''),
  9. EdgeInsets loadingTextPadding = const EdgeInsets.only(top: 10.0),
  10. ImageProvider<Object>? backgroundImage,
  11. Gradient? gradientBackground,
  12. bool showLoader = true,
})

Implementation

EasySplashScreen({
  this.loaderColor = Colors.black,
  this.futureNavigator,
  this.navigator,
  this.durationInSeconds = 3,
  required this.logo,
  this.logoSize = 50,
  this.title,
  this.backgroundColor = Colors.white,
  this.loadingText = const Text(''),
  this.loadingTextPadding = const EdgeInsets.only(top: 10.0),
  this.backgroundImage,
  this.gradientBackground,
  this.showLoader = true,
});