Wowzaaa
Wowzaaa

Reputation: 4090

cread custom splash / launch screen using an animated svg

I am trying to add an animated SVG as an application loader in a React native app. Their docs don't offer any solution on how I could approach this.

Upvotes: 0

Views: 975

Answers (1)

Mihir
Mihir

Reputation: 3902

Back when I was working on a react native project, we had used a simple method to achieve splash screen effect.

We had called setTimeout() in componentDidMount() to navigate to the home-screen after 2 seconds. Also, we used to check whether the user is logged-in. If so, we'd navigate straight to the home screen skipping the annoying splash screen altogether.

Upvotes: 1

Related Questions