Expo React Native Navigation

One app that combine stack, drawer and tab navigation

Ckmobile
The Startup

--

In this article, we will demonstrate how to setup the navigation inside react native. We will walk through all the process from creating different screens, install the necessary package for creating stack navigator, drawer navigator and tab navigator.

Related Courses:

Creating the screens for the project

First, create a folder called “screens”. Under the “screens” folder, we crate About.js, Home.js and Task.js.

Home.js

import React from 'react'import { StyleSheet,View, Text } from 'react-native'const Home = () => {return (

--

--