From 0ca1ed866fc24d8cadf6147e0d2a590824788933 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20L=C3=BAcio?= Date: Thu, 7 May 2020 17:44:50 -0300 Subject: [PATCH] Fixed #114 --- example/lib/app/modules/home/home_widget.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/lib/app/modules/home/home_widget.dart b/example/lib/app/modules/home/home_widget.dart index 933455b1..43910a84 100644 --- a/example/lib/app/modules/home/home_widget.dart +++ b/example/lib/app/modules/home/home_widget.dart @@ -26,7 +26,7 @@ class HomeWidget extends ModularStatelessWidget { FlatButton( onPressed: () { Navigator.of(context) - .pushNamed('/list/${get().counter}'); + .pushNamed('/home/list/${get().counter}'); }, child: Text("LIST"), )