From 9b25eec6463bfc1fa3e37b0fb068887604015424 Mon Sep 17 00:00:00 2001
From: Akinwale Ariwodola <akinwale@gmail.com>
Date: Mon, 21 Oct 2019 17:26:51 +0100
Subject: [PATCH 1/2] downgrade react-navigation-drawer package

---
 package-lock.json | 9 ++++++---
 package.json      | 2 +-
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/package-lock.json b/package-lock.json
index 8da0108..d48c43a 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -8402,9 +8402,12 @@
             }
         },
         "react-navigation-drawer": {
-            "version": "2.2.2",
-            "resolved": "https://registry.npmjs.org/react-navigation-drawer/-/react-navigation-drawer-2.2.2.tgz",
-            "integrity": "sha512-KcFH7RRzT1XuREkTbNMCqfy7nK7yenzpGKvqp1dTvAE+DIyHHpf+Po959lsmITlt/njQBn+QxvdX1FZ9we3lNA=="
+            "version": "1.4.0",
+            "resolved": "https://registry.npmjs.org/react-navigation-drawer/-/react-navigation-drawer-1.4.0.tgz",
+            "integrity": "sha512-ZyWBozcjB2aZ7vwCALv90cYA2NpDjM+WALaiYRshvPvue8l7cqynePbHK8GhlMGyJDwZqp4MxQmu8u1XAKp3Bw==",
+            "requires": {
+                "react-native-tab-view": "^1.2.0"
+            }
         },
         "react-navigation-redux-helpers": {
             "version": "3.0.2",
diff --git a/package.json b/package.json
index 13aca50..4537222 100644
--- a/package.json
+++ b/package.json
@@ -34,7 +34,7 @@
         "react-native-vector-icons": "^6.6.0",
         "react-native-video": "lbryio/react-native-video#exoplayer-lbry-android",
         "react-navigation": "^3.11.0",
-        "react-navigation-drawer": "^2.2.2",
+        "react-navigation-drawer": "^1.4.0",
         "react-navigation-redux-helpers": "^3.0.2",
         "react-navigation-stack": "^1.8.1",
         "react-redux": "^5.0.3",

From fd9873ccc753f34d0a747def73be319c400914a0 Mon Sep 17 00:00:00 2001
From: Akinwale Ariwodola <akinwale@gmail.com>
Date: Mon, 21 Oct 2019 17:30:10 +0100
Subject: [PATCH 2/2] adjust drawer width

---
 src/component/AppNavigator.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/component/AppNavigator.js b/src/component/AppNavigator.js
index 5f35446..859f93a 100644
--- a/src/component/AppNavigator.js
+++ b/src/component/AppNavigator.js
@@ -214,7 +214,7 @@ const drawer = createDrawerNavigator(
     },
   },
   {
-    drawerWidth: 300,
+    drawerWidth: 280,
     drawerBackgroundColor: 'transparent',
     headerMode: 'none',
     backBehavior: 'none',