SplashView constructor

const SplashView({
  1. Key? key,
  2. BackgroundImageDecoration? backgroundImageDecoration,
  3. Color? backgroundColor,
  4. Gradient? gradient,
  5. Widget? title,
  6. Widget? subtitle,
  7. Widget? loadingIndicator,
  8. bool bottomLoading = false,
  9. Duration? duration = const Duration(seconds: 3),
  10. Done? done,
  11. bool showStatusBar = false,
})

Implementation

const SplashView({
  Key? key,
  this.backgroundImageDecoration,
  this.backgroundColor,
  this.gradient,
  this.logo,
  this.title,
  this.subtitle,
  this.loadingIndicator,
  this.bottomLoading = false,
  this.duration = const Duration(seconds: 3),
  this.done,
  this.showStatusBar = false,
}) : super(key: key);