Reputation: 1797
There is not much about splash screen for ionic. According to documentation it should be very simple. What I did then was to download the psd-file from here:
http://code.ionicframework.com/resources/splash.psd
Then I created my artwork which is 1200X1200 pixels. I copied the artwork and put it in the middle of the psd-file.
After that, I just run the command to generate the splash screens for the various devices (testing ios right now).
When I start the app, the splash screen doesn't cover all the screen. It is centered vertically and above and below there are a lot of empty pixels. What am I doing wrong?
Upvotes: 0
Views: 1006
Reputation: 7724
Actually ionic Splash screen pixels should be 2208pixels.
Then you have to Replace your splash screen in your resources file with your splash screen.
Then run ionic resources --splash
command in your terminal to load your splash screen and that should do the trick.
To know more about ionic-splash look here ionic-doc.
Upvotes: 2