I would like to add a three screens walkthrough into my existing app code. At the moment after the splash screen, the next screen appears to be as
which is a three tabbed main view of the app.
What I am trying to achieve is after the splash screen, I would like to show a three screens walkthrough before the attached main app screen loads up, I have done all the code for the walkthrough screens, it is just the question to where add that code in order to get the expected results as described.
I have already tried following; a. tried adding the Walkthrough component into Index file b. tried adding the Walkthrough component into App file
Thanks
========== Index.js ==========
import { AppRegistry } from 'react-native';
import App from './App';
AppRegistry.registerComponent('Pak', () => App);
========== App.js ==========
import React, { Component } from 'react';
import { Tabs } from './src/config/router';
export default class App extends Component {
render() {
return (
<Tabs />
);
}
}