Is there an alternative to using a Splash Screen? Could I just use a custom view instead? #5300
-
(Related to my previous question: #5298) To solve my particular problem of being unable to dynamically change what is displayed on the Splash Screen, couldn't I just stop using the Capacitor's Splash Screen and just have a custom view that I show while the app is initializing? Is there any issue with this? In other words, is there a compelling reason to continue using Capacitor's Splash Screen, knowing its limitations? The answer could be an easy "yes", but... Is there anything unique that Capacitor's Splash Screen provides that I need to be aware of when implementing my own? In other words, what could I be missing out on by doing this? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Yes, using the plugins provided by Capacitor team is not mandatory, you can create your own. Things to have in mind:
So for both cases you should make a launch storyboard/background that look similar to your custom splash so the change between them is not very noticeable. Also have in mind that if you are going to make a network request in your splash to query the company name or whatever, that also takes some time and your view won't be displayed or will be displayed before getting the response back. |
Beta Was this translation helpful? Give feedback.
Yes, using the plugins provided by Capacitor team is not mandatory, you can create your own.
Things to have in mind:
So for both cases you should make a launch storyboard/background that look similar to your custom splash so the change between them is not very noticeable.
A…