diff --git a/lib/mainDrawer.dart b/lib/mainDrawer.dart index 40c20de..10f586e 100644 --- a/lib/mainDrawer.dart +++ b/lib/mainDrawer.dart @@ -62,15 +62,6 @@ Widget mainDrawer(BuildContext context) { }, ), new Divider(), - new ListTile( - leading: const Icon(Icons.lock), - title: new Text(S.of(context).privacyPolicy), - onTap: () { - // Then close the drawer - Navigator.pop(context); - Navigator.pushNamed(context, PrivacyPage.routeName); - }, - ), new ListTile( leading: const Icon(Icons.favorite), title: new Text(S.of(context).supportThisInitiative), @@ -80,6 +71,15 @@ Widget mainDrawer(BuildContext context) { Navigator.pushNamed(context, '/subscriptions'); }, ), + new ListTile( + leading: const Icon(Icons.lock), + title: new Text(S.of(context).privacyPolicy), + onTap: () { + // Then close the drawer + Navigator.pop(context); + Navigator.pushNamed(context, PrivacyPage.routeName); + }, + ), globals.isDevelopment ? new ListTile( leading: const Icon(Icons.bug_report),