From 248ca6f328fb7c0f91e68498f4afcfbf8127d3f7 Mon Sep 17 00:00:00 2001
From: Oliver Walters <oliver.henry.walters@gmail.com>
Date: Mon, 9 Aug 2021 23:53:48 +1000
Subject: [PATCH] Do no provide a "drawer" unless on the home screen

---
 lib/widget/refreshable_state.dart | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/widget/refreshable_state.dart b/lib/widget/refreshable_state.dart
index 27b0d6a6..94134e00 100644
--- a/lib/widget/refreshable_state.dart
+++ b/lib/widget/refreshable_state.dart
@@ -97,7 +97,7 @@ abstract class RefreshableState<T extends StatefulWidget> extends State<T> {
     return Scaffold(
       key: refreshableKey,
       appBar: getAppBar(context),
-      drawer: getDrawer(context),
+      drawer: null, // getDrawer(context),
       floatingActionButton: getFab(context),
       body: Builder(
         builder: (BuildContext context) {