In this post we will learn how to navigate from one page to another using drawer menu options. As we all know that, app is just a widget in flutter, or a description of the UI portrayed. Each class which we create by extending StatelessWidget class gives us the ability to describe the part of our UI by building a constellation of other widget that describes our User Interface more loosely coupled. So, the example which I will be implementing here is going to have one drawer to the top left of the screen on the app bar, which will have some menus. These menus will open UI respectively on user click. Below are the screen shots for the same: Follow the below steps to implement this: Run VSCode and press ctrl+shift+p and run Doctor Command to make sure everything is up and running. See if Doctor command runs without issue. Press ctrl+shift+p and type ' New '. You will see the ' Flutter: New Project ' command suggested in search, Lik...