Reputation: 37
Is there someone who knows the module which allows to show the user the use of our application? I knew it but i have not found it...!
Upvotes: 0
Views: 310
Reputation: 2283
Do you need an introduction slider like something?
In that case, you can use react-native-app-intro-slider
.
Check details in here
https://github.com/Jacse/react-native-app-intro-slider
Edit
In that case, you can use react-native-copilot
Upvotes: 2
Reputation: 1099
there are different ways of implementation. One of them is using localStorage.setItem()
and localStorage.getItem()
. for example, you can have a variable showInstruction
and set its value to true. When the application starts, check the variable by localStorage.getItem()
and if it is false, skip the Modal
(instructions), if it is true, show the Modal
to the user. remember at the end of instruction you should set showInstruction
to false to stop showing modal every time you start the application by localStorage.setItem()
.
Upvotes: 0