Reputation: 4090
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
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