How to show app intro only once?

I would like to create an app intro at the start of my application that shows once when the user installed the app , Is there a way to do that?

The solution I use is to store a key in LocalStorage when the user has finished the tutorial and started the application the first time, then just check for that key/value in LS next time and skip the intro. Make sense?

2 Likes

Thanks, I think it’s the best solution

We do this too (local storage). If you have multiple on boarding steps / screens you can even store a key for each one.

Then on startup / resume you can check the local storage keys and send them to the step that you want / that they were at when they quit the app etc.

1 Like