找不到路由“ home-page”的生成器在_MaterialAppState中

问题描述:

在Flutter应用程序中尝试从一个视图导航到另一个视图时,出现异常。

I am getting exception when I trying to navigate from one view to another in flutter app.

I/flutter ( 2199): ══╡ EXCEPTION CAUGHT BY GESTURE ╞═══════════════════════════════════════════════════════════════════
I/flutter ( 2199): The following assertion was thrown while handling a gesture:
I/flutter ( 2199): Could not find a generator for route "home-page" in the _MaterialAppState.


使用

Navigator.push(context, new MaterialPageRoute(
  builder: (context) =>
     new MyHomePage())
  );

而不是

Navigator.of(context).pushNamed('/home-page');
//or
Navigator.pushedName(context, '/home-page');