@react-navigation/drawer vs react-navigation-drawer

563 Views Asked by At

Are the following two imports for react navigation drawer equivalent?

React native docs at React Navigation 5.x Drawer uses the second form of Import.

import { createDrawerNavigator } from 'react-navigation-drawer';
import { createDrawerNavigator } from '@react-navigation/drawer';
1

There are 1 best solutions below

1
On BEST ANSWER

First import for version 2.5.2 check npm https://www.npmjs.com/package/react-navigation-drawer

import { createDrawerNavigator } from 'react-navigation-drawer';

Second import for version 5 https://www.npmjs.com/package/@react-navigation/drawer

import { createDrawerNavigator } from '@react-navigation/drawer';

Finder with @react-navigation/drawer in node-modules enter image description here