Skip to content

yrezgui/cordova-plugin-splashscreen

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

90 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

org.apache.cordova.splashscreen

Plugin documentation: doc/index.md

This plugin is a fork from the official one. It has only one line changed which remove completely the white damn splash screen. It's working only on iOS (for now).

So to fix the problem, add this plugin :

cordova plugin add https://github.com/yrezgui/cordova-plugin-splashscreen.git

Add this line on your config.xml :

<preference name="AutoHideSplashScreen" value="false" />

And a <script> in the <body> of your index.html with this content :

document.addEventListener('deviceready', function ready() {
  navigator.splashscreen.hide();
}, false);

About

Mirror of Apache Cordova Plugin splashscreen

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Objective-C 45.4%
  • JavaScript 27.3%
  • C++ 11.3%
  • C# 9.8%
  • Java 6.2%