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.
Use
Navigator.push(context, new MaterialPageRoute(
builder: (context) =>
new MyHomePage())
);
Instead of
Navigator.of(context).pushNamed('/home-page');
//or
Navigator.pushedName(context, '/home-page');
This message tells, that in route list, the route you search aren't listed. So, check if in your MaterialApp->routes have your specified route.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With