SplashView constructor
const
SplashView({
- Key? key,
- DecorationImage? backgroundImageDecoration,
- Color? backgroundColor,
- Gradient? gradient,
- Widget? logo,
- Widget? title,
- Widget? subtitle,
- Widget? loadingIndicator,
- bool bottomLoading = false,
- Duration? duration = const Duration(seconds: 3),
- bool showStatusBar = false,
- Future onStart()?,
- dynamic onFinish()?,
Implementation
const SplashView({
super.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.showStatusBar = false,
this.onStart,
this.onFinish,
});