Splash Screen
iOS, Android
The Splash Screen API provides methods for showing or hiding a Splash image.
Methods
Example
// Show splash screen SplashScreenBridge.Show(); // Hide splash screen SplashScreenBridge.Hide();
API
Show
Show the splash screen
static Task Show(SplashScreenShowOptions options = null)
Hide
Hide the splash screen
static Task Hide(SplashScreenHideOptions options = null)
Models
SplashScreenShowOptions
public class SplashScreenShowOptions { public bool autoHide; public long fadeInDuration; public long fadeOutDuration; public long showDuration; }
SplashScreenHideOptions
public class SplashScreenHideOptions { public long fadeOutDuration; }