diff --git a/with-drawer-navigation/App.js b/with-drawer-navigation/App.js
new file mode 100644
index 0000000..c580cff
--- /dev/null
+++ b/with-drawer-navigation/App.js
@@ -0,0 +1,47 @@
+import 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 (
+
+
+
+ );
+}
+
+function NotificationsScreen({ navigation }) {
+ return (
+
+
+
+ );
+}
+
+const Drawer = createDrawerNavigator();
+
+export default function App() {
+ return (
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/with-drawer-navigation/README.md b/with-drawer-navigation/README.md
new file mode 100644
index 0000000..3f520e9
--- /dev/null
+++ b/with-drawer-navigation/README.md
@@ -0,0 +1,20 @@
+# Drawer navigation example
+
+
+
+
+
+
+
+
+
+
+## 🚀 How to use
+
+- Install with `yarn` or `npm install`.
+- Run `expo start` to try it out.
+
+## 📝 Notes
+
+- This is a very basic example from the [react navigation](https://reactnavigation.org/) docs.
+- [Drawer navigation documentation](https://reactnavigation.org/docs/drawer-based-navigation).
diff --git a/with-drawer-navigation/babel.config.js b/with-drawer-navigation/babel.config.js
new file mode 100644
index 0000000..2900afe
--- /dev/null
+++ b/with-drawer-navigation/babel.config.js
@@ -0,0 +1,6 @@
+module.exports = function(api) {
+ api.cache(true);
+ return {
+ presets: ['babel-preset-expo'],
+ };
+};
diff --git a/with-drawer-navigation/package.json b/with-drawer-navigation/package.json
new file mode 100644
index 0000000..def5632
--- /dev/null
+++ b/with-drawer-navigation/package.json
@@ -0,0 +1,19 @@
+{
+ "dependencies": {
+ "@react-native-community/masked-view": "0.1.6",
+ "@react-navigation/drawer": "^5.7.5",
+ "@react-navigation/native": "^5.4.0",
+ "expo": "~37.0.3",
+ "react": "~16.9.0",
+ "react-dom": "~16.9.0",
+ "react-native": "https://github.com/expo/react-native/archive/sdk-37.0.1.tar.gz",
+ "react-native-gesture-handler": "~1.6.0",
+ "react-native-reanimated": "~1.7.0",
+ "react-native-safe-area-context": "0.7.3",
+ "react-native-screens": "~2.2.0",
+ "react-native-web": "~0.11.7"
+ },
+ "devDependencies": {
+ "babel-preset-expo": "~8.1.0"
+ }
+}