Showing
1 changed file
with
8 additions
and
2 deletions
@@ -52,8 +52,14 @@ To go to the next screen and cancel all previous routes (useful in shopping cart | @@ -52,8 +52,14 @@ To go to the next screen and cancel all previous routes (useful in shopping cart | ||
52 | Get.offAll(NextScreen()); | 52 | Get.offAll(NextScreen()); |
53 | ``` | 53 | ``` |
54 | 54 | ||
55 | -Is possible used default namedRoutes from flutter? | ||
56 | -Yes, and with no navigation bug | 55 | +### That's it, you've learned how to navigate between routes the default way. |
56 | + | ||
57 | +However, for people who like more organized code who want to navigate with named routes, or for Flutter_web Developers who want the url to show exactly which route is being shown, and want the page refresh not to affect the state of the routes. On your site, we give you a much more elegant and functional solution. Yeah, the default navigation doesn't fully support Flutter_web, but Get does !!!! | ||
58 | + | ||
59 | +## So... Is possible used default namedRoutes from flutter? | ||
60 | +- Yes, and with no navigation bug | ||
61 | + | ||
62 | +## Using with Named Routes and And offering full flutter_web support: | ||
57 | 63 | ||
58 | ### Add " navigatorKey: Get.key," to MaterialApp | 64 | ### Add " navigatorKey: Get.key," to MaterialApp |
59 | 65 |
-
Please register or login to post a comment