Is it possible to increase display time of splash screen? Especially on ios.
@tolgaduzenli did you find any solution?
I just did this in my JS code:
componentDidMount() {
setTimeout(() => SplashScreen.hide(), 1000);
}
That will wait 1 second before the hide function is called after the screen has mounted (giving it some additional time to finish rendering).
Most helpful comment
I just did this in my JS code:
That will wait 1 second before the hide function is called after the screen has mounted (giving it some additional time to finish rendering).