Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ionic - Remove Disable spinner on splash screen [closed]

How can I disable the splash screen spinner during the startup of an Ionic app?

like image 511
lewis4u Avatar asked Jun 08 '16 10:06

lewis4u


1 Answers

If it is a SplashScreenSpinner:

In the config.xml file:

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

Official Docs

like image 120
Atula Avatar answered Nov 13 '22 05:11

Atula