Onboarding just on first startup

Hey guys!

I would like to create an onboarding, just like in this example.

But I want this to only appear at the very first start and never again. What would be the best way to do this?

You can save some boolean variable to phone local storage, and then read that variable, if value is true then don’t show up onboarding again.

For saving configuration, there so many ways to do it, you can do by localStorage more info here

Starting Fuse 1.13 there is FuseJS module called UserSettings more info here, this is the best way to do it, because behind the scene it’s using SharedPreferences on Android and NSUserDefaults on iOS