Splash Screen
This plugin displays and hides a splash screen during application launch. The methods below allows showing and hiding the splashscreen after the app has loaded.
Stuck on a Cordova issue?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.
Installation
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
Supported Platforms
- Amazon Fire OS
- Android
- iOS
- Windows
Usage
import { SplashScreen } from '@ionic-native/splash-screen/ngx';
constructor(private splashScreen: SplashScreen) { }
...
this.splashScreen.show();
this.splashScreen.hide();