React Native Navigation

This writing provides an overview of React Native Navigation. 1. Navigation Patterns Navigation patterns such as tab, stack, drawer navigation are as below example. Mostly tab navigation is used (ex. Instagram, Facebook) and sometimes they are used mixed. For detail of how to use, refer to: https://reactnavigation.org/ There are more variants of the tab navigator, like Google’s Material Design (top) Tabs 2. NavigationContainer Component In the React Navigation library, components need to be wrapped in a NavigationContainer component to manage the navigation structure and ensure navigators work properly. import { NavigationContainer } from '@react-navigation/native' ; 3. Stack Navigation For how to use, refer to comments in below example: import React from 'react' ; import { StyleSheet, Text, View } from 'react-native' ; import { NavigationContainer } from '@react-navigation/native' ; // import this library to use navi...