Welcome to this simple Flutter tutorial for navigating between multiple pages, or routing. This tutorial was made as a class assignment and since we are exploring Flutter for our class project, we decided to do a simple tutorial to help others learn a bit more about it. This was created using Tensor Programming’s video Tensor Programming's Video and adapted as a small tutorial you see here by me, Carmelo González, and my class partner Zuleyka González. In flutter, when we want to cycle through different pages we have to create routes. These are classes that belong to the Navigation family ( More info here ) and we can invoke when we trigger an action, for example onPressed when we use Buttons. The Navigators works in stacks, you push a page when you want to access one and pop when you wish to return to a previous one. Let’s write a simple code to check this out. (In Android a route is equivalent to an activity , in iOS its equivale...