I have a Drawer widget on main.dart. The Drawer works great on this page, but when I navigate to a different page, using code like below, I lose the the drawer on the new page. Is there any recommended way to keep the drawer after navigating to a separate page?
Navigator.push(context, new MaterialPageRoute(builder: (context) => new MessageEntryPage()));
I saw similar questions in stackoverflow but couldn't get an answer.