kevando
kevando

Reputation: 275

React Native Design Approach for App Walkthrough

I'm building a react-native app and I would like new users to experience one of those slider walkthroughs that explains the app and how to use it, but then never show it again.

What is the best approach to achieve this functionality?

Upvotes: 1

Views: 891

Answers (1)

Aakash Sigdel
Aakash Sigdel

Reputation: 9300

You can use Navigator to achieve this. Push the sliding view into the Navigator, then when you want to exit out of it then use replace(route) function of the Navigator.

The replace(route) method of navigator replaces the current scene with the new route

replace(route) - Replace the current scene with a new route

Upvotes: 1

Related Questions