I have a screen made with react-native-swiper where I give an introduction on how the app works, but I would like to display this screen only the first time the user opens the app.
how can I do this?
I have a screen made with react-native-swiper where I give an introduction on how the app works, but I would like to display this screen only the first time the user opens the app.
how can I do this?
you can store a bool value in a local storage, even in the secured store by using the expo SecureStore package. Then check the store for that value when the app starts.