How can I get rid of the white screen before the user interface shows?

0
Hi, The native app was rejected from the iStore because it shows a white screen after the splash screen before it shows the user Interface. Meaning in between the splash and the User Interface, both iOS and Android. How can I kill this white screen and show the splash until the User Interface is ready. The splash screen shows and quickly goes away. Thanks.
asked
1 answers
1

Maybe you could add the splash screen to the index page, and hide the page content (div#content) until the first page is loaded. Then when the first page is loaded, just hide the splash screen and show the content:

mx.addOnLoad(function() {
    dojo.byId("splash").style.display = "none";
    dojo.byId("content").style.display = "";
});
answered