Difference between onGenerateRoute and routes in Flutter

后端 未结 3 1974
太阳男子
太阳男子 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.

提交回复
热议问题