Difference between onGenerateRoute and routes in Flutter

后端 未结 3 1977
太阳男子
太阳男子 2021-02-18 22:27

What is the benefit or use case of onGenerateRoute and routes in Flutter.

In my application in first page inside MaterialApp we can define rout

相关标签:
3条回答
  • 2021-02-18 22:36

    Without diving into any details those two properties do the same thing, but as @Alireza noted routes is checked first.

    Also, using onGenerateRoute gives you a single place to add your custom business logic before pushing new routes (pages). For example, if you want to do some initializations.

    routes property:

    When a named route is pushed with Navigator.pushNamed, the route name is looked up in this map. If the name is present, the associated WidgetBuilder is used to construct a MaterialPageRoute that performs an appropriate transition, including Hero animations, to the new route.

    onGenerateRoute property:

    The route generator callback used when the app is navigated to a named route. ... This is used if routes does not contain the requested route.

    IMPORTANT: What you really want to be aware of is a known bug in onGenerateRoute property.

    The problem is that if you use onGenerateRoute to create named routes you won't be able to get the name of that route from RouteSettings object in your page. (Arguments attached to the settings object are fine though) In other words:

    Widget build(BuildContext context) {
        ModalRoute.of(context).settings.name == null;       //bug
        ModalRoute.of(context).settings.arguments != null;  //ok
        ...
    

    This may affect you in case you would like to know the name of the current route. For example, if you want to pop some screens:

    navigator.popUntil(ModalRoute.withName('/login'));
    

    Therefore, until this problem is resolved, I recommend using the routes: property.

    0 讨论(0)
  • 2021-02-18 22:46

    According to the documentation (I put the link below), onGenerateRoute is used if routes does not contain the requested route.

    Flutter onGenerateRoute

    0 讨论(0)
  • 2021-02-18 22:50

    My solution is to re-assign the settings of MaterialPageRoute.

    eg: //配置路由

    final routes = {
      '/': (context) => MainPage(),
    };
    

    // 统一处理

    var onGenerateRoute = (RouteSettings settings) {
        final String name = settings.name;
          final Function pageContentBuilder = routes[name];
          if (pageContentBuilder != null) {
            if (settings.arguments != null) {
              final Route route = MaterialPageRoute(
                  settings: settings,
                  builder: (context) => pageContentBuilder(context, arguments: settings.arguments));
              return route;
            } else {
              final Route route =
                  MaterialPageRoute(settings: settings,
                      builder: (context) => pageContentBuilder(context));
              return route;
            }
          }
        };
    
    
    
       
    
    0 讨论(0)
提交回复
热议问题