Navigating Flutter Part 1

Greg Perry
Flutter Community
Published in
11 min readJan 8, 2021

--

A look into Flutter’s Navigation System

Part of the Decode Flutter Series

In Flutter, the screens or pages presented to you in a mobile app are called routes. Behind the scenes, while you navigate through the app going from screen to screen, a ‘stack of routes’ is being managed by the StatefulWidget, Navigator. There is an actual class called, Navigator, involved in all this. With this article, we’ll introduce ourselves to this class as well as take a…

--

--