Introduction to React Native Navigation
Create a project "exop init ProjectName" Install the following dependencies in order to use Stack, Tab, Drawer Navigations and Icons npm install @react-navigation/native npm install @react-navigation/stack expo install react-native-gesture-handler npm install @react-navigation/bottom-tabs npm install @react-navigation/drawer expo install react-native-gesture-handler react-native-reanimated expo install react-native-reanimated npm install react-native-elements --save --force npm install react-native-vector-icons --save Open Babel.config.js and change as follows module . exports = function ( api ) { api . cache ( true ); return { presets : [ 'babel-preset-expo' ], plugins : [ 'react-native-reanimated/plugin' ], }; }; Now run expo start --clear Now create JS Files as follows Header.js import { StatusBar } from 'expo-status-bar' ; import { StyleSheet , Text , View } from 'react-native' ; import Photo from './Photo...