Reputation: 153
Hello I'm building an app with Ionic, and I want to remove the loading spinner on splash screen when the app starts, any solution for this?
Upvotes: 3
Views: 2308
Reputation: 5013
Add this to your config.xml-file:
config.xml
<preference name="ShowSplashScreenSpinner" value="false" />
Here are som more preferences you can make use of.
Upvotes: 14