SplashScreenPlugin

hide

hide(options?: SplashScreenHideOptions, callback?: Function): void
Hide the splash screen
options SplashScreenHideOptions
callback Function
Returns: void

show

show(options?: SplashScreenShowOptions, callback?: Function): void
Show the splash screen
options SplashScreenShowOptions
callback Function
Returns: void
interface SplashScreenHideOptions {
// How long (in ms) to fade out. Default is 200ms
fadeOutDuration ?: number
}
interface SplashScreenShowOptions {
// Whether to auto hide the splash after showDuration
autoHide ?: boolean
// How long (in ms) to fade in. Default is 200ms
fadeInDuration ?: number
// How long (in ms) to fade out. Default is 200ms
fadeOutDuration ?: number
// How long to show the splash screen when authHide is enabled (in ms) Default is 3000ms
showDuration ?: number
}