Could not find a generator for route

后端 未结 8 1382
谎友^
谎友^ 2021-01-07 17:03

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 ha         


        
8条回答
  •  鱼传尺愫
    2021-01-07 17:33

    try this :

    onPressed: () {
        Navigator.push(
          context,
          new MaterialPageRoute(
            builder: (context) => new ListaDeCompras(),
          ),
        );
      },
    

提交回复
热议问题