Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not find a generator for route

Tags:

flutter

I´m newbie to flutter and reveice one exception about route and paginator in Flutter.

EXCEPTION CAUGHT BY GESTURE The following assertion was thrown while handling a gesture: Could not find a generator for route "/listadecompras" in the _MaterialAppState. 

Follow a excerpt from code:

import 'package:flutter/material.dart';  class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return new MaterialApp( // ...                                     return new ListTile(                   onTap: () {                                                              Navigator.pushNamed(context, "/listadecompras");                   }, // ... }   class ListaDeCompras extends StatelessWidget { @override Widget build(BuildContext context) { return new Scaffold( // ... } }   void main() { runApp(new MaterialApp(     home: new MyApp(),      routes: <String, WidgetBuilder>{         "/listadecompras": (BuildContext context) => new ListaDeCompras()     } )); } 

Please, someone could send some advice? thanks in advance for your attention

like image 477
Gúbio Bonner Avatar asked Mar 06 '18 13:03

Gúbio Bonner


People also ask

How do you use Navigator pushNamed?

To use Navigator. pushNamed(), we have to follow two steps: declare routes property in the MaterialApp constructor. call the Navigator.


2 Answers

Because Of instantiated two MaterialApp widgets. You need to remove the one in MyApp class and may change it to Scaffold

Example:

class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return new Scaffold( // ...                                     return new ListTile(                   onTap: () {                                                              Navigator.pushNamed(context, "/listadecompras");                   }, // ... } 

THE PROBLEM IS YOUR CODE IS - the route is trying to resolve for the nearest MaterialApp which has no route definition. That said you should use only one MaterialApp as the root of your widget tree.

like image 178
Shady Aziza Avatar answered Oct 26 '22 12:10

Shady Aziza


try this :

onPressed: () {     Navigator.push(       context,       new MaterialPageRoute(         builder: (context) => new ListaDeCompras(),       ),     );   }, 
like image 23
Augustine Aykara Avatar answered Oct 26 '22 11:10

Augustine Aykara