I am developing an app and I have been checking out the ionic 2 conference app as a great example on some coding practices and how to structure the right app (as side note: thank you for making the conference app available to everyone. It’s a great resource and is very helpful). On the ionic 2 conference app I know that the splash screen is hidden as long as ionic 2 and other plugins are ready by the file app.js
However, the splash screen shows up for as long as 3 or 4 seconds compared with react-native sample app which the splashscreen disappears after 1 or 2 seconds.
My question: Is there any way to make the splash screen disappear faster? (less delay?). I have tried remove the line
Splashscreen.hide();
and alter the number of delay and auto hide splash screen on my config.xml to true and 1000ms but that does not work (the splash screen still takes as long as 3-4 seconds).