create drawer in react native code example

Example 1: react native drawer navigation example

import * as React from 'react';
import { Button, View } from 'react-native';
import { createDrawerNavigator } from '@react-navigation/drawer';
import { NavigationContainer } from '@react-navigation/native';

function HomeScreen({ navigation }) {
  return (
    
      

Example 2: how to add abutton component to drawer in react native

 {
    return (
      
        
         props.navigation.navigate("Login")} />
      
    )
  }}>
    
    
  

Tags:

Misc Example