Chapter 7. Flutter routing in depth

 

This chapter covers

  • Setting up named routes
  • Building routes on the fly
  • Using the Navigator
  • Custom page transition animations

When I was planning this chapter, I was trying to answer these questions: “Why?” or “Who cares?” These are standard questions that Manning encourages their authors to think about before writing a chapter. And, well, this time, these were pretty easy to answer: everyone who doesn’t want to make an app with a single page. Thus, a chapter on routing.

Routing can be a real pain on many platforms (but it shouldn’t have to be!). This point is all too clear in the web world. There are countless libraries that solely implement routing for different frameworks. And, speaking of the web world, I think the folks behind React Router nailed the solution. It’s easy to use, and it’s flexible. It matches the reactive and composable UI style of React.

According to their docs, they’re in the business of “dynamic routing,” rather than static. Historically, most routing was declarative, and routes were configured before the app rendered. The creators of React Router (https://reacttraining.com/react-router/) explained it well in their docs:

“When we say dynamic routing, we mean routing that takes place as your app is rendering. Not in a configuration or convention outside of a running app.”

7.1. Routing in Flutter

 
 
 
 

7.1.1. The Farmers Market app

 
 

7.1.2. The app source code

 
 
 

7.2. Declarative routing and named routes

 
 
 

7.2.1. Declaring routes

 
 
 
 

7.2.2. Navigating to named routes

 
 

7.2.3. MaterialDrawer widget and the full menu

 
 

7.2.4. Menu items and the appropriate widgets: ListView and ListItems

 
 

7.2.5. NavigatorObserver: Highlighting the active route with RouteAware

 
 
 

7.3. Routing on the fly

 
 
 

7.3.1. MaterialRouteBuilder

 
 

7.3.2. showSnackBar, showBottomSheet, and the like

 
 

7.4. Routing animations

 

Summary

 
 
sitemap

Unable to load book!

The book could not be loaded.

(try again in a couple of minutes)

manning.com homepage