One Time Tutorial

I want to make an app in which I want to tutorial for one time. it should not be shown each and every time the app opens.
Thanks :blush:

This kind of thing can be solved using a stored variable
So, on the first run, on first screen opens, check that var. Stored variable are saved on device, so will act between sesions. Clearing app`s cache will clear all stored variable aswell tho.
If is null, then run tutorial. After tutorial ends, take care to set that var some value, true for example.
Now you will have that variable set to true, and will skip tutorial everytime app starts.

2 Likes

Thanks Worked​:grinning::+1: