-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Splashscreen Support #399
Comments
Hi Jhull, There is support for automatic iOS splash screens since October (#308). I just looked at the PR and it seems that the PR uses the standard icon to create a splash screen. This could work by creating a very large icon, but this doesn't work if you want to have a different splash screen or if your icon size is less than the size of the splash screen (since splash screens only work if they're exactly the same size as the pixels on the phone). I'll look into it and see if I can fix it with an extra PR. |
I have looked into it, but I'm not sure if understand the module enough to make the changes. @dvarnai, could you see if you can add an |
Thanks @RubenVanEldik for your help. I ended up going with a manual solution as the module currently leaves out a bunch of device resolutions (as well as doubling them for portrait and landscape). I was using this pwa-asset-generator to generate them manually, but found the automatic solution lacking with the image/icon I was using. What worked for me was creating the images manually one-by-one, then adding this to the
This is the full collection of devices and sizes from the Apple HID. The asset generator module above scrapes this page for the info, but I learned that its not always kept up-to-date, thus just going to keep this manual for now. Pulling out the
And then create my own Hope this helps. And helps any future development of this module. The fix you suggest for a custom name (and location) would be great, as long as there was some way to add more sizes as I'm sure Apple isn't finished coming up with new ones. 😊 |
I'll take a look, I wanted to add support for such anyway, just never got around to do it. |
Wondering if you had any update to this...was working great until just yesterday - now I'm getting the blown-up icon again, instead of the nice slick splash screen. EDIT: nvm...I remembered over the weekend that my solution was not using this module :). I had rebuilt my app and forgot to leave this part out...thanks! |
+1 |
Same problem here!
I tired to override the default |
+1 |
Am I correct in understanding that there is no current module/support for splash screens? Currently, I'm doing this:
in my
nuxt.config.js
Also, I have this:
But the splash screen that comes up is a giant version of my 'icon.png' not the nice splash screens referenced above.
The text was updated successfully, but these errors were encountered: