2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-04-28 05:26:47 +00:00

Do no provide a "drawer" unless on the home screen

This commit is contained in:
Oliver Walters 2021-08-09 23:53:48 +10:00
parent d442206c12
commit 248ca6f328

View File

@ -97,7 +97,7 @@ abstract class RefreshableState<T extends StatefulWidget> extends State<T> {
return Scaffold( return Scaffold(
key: refreshableKey, key: refreshableKey,
appBar: getAppBar(context), appBar: getAppBar(context),
drawer: getDrawer(context), drawer: null, // getDrawer(context),
floatingActionButton: getFab(context), floatingActionButton: getFab(context),
body: Builder( body: Builder(
builder: (BuildContext context) { builder: (BuildContext context) {