From 6149f42ce3c68b367d7ab09d77d969cfb2b9c3c7 Mon Sep 17 00:00:00 2001 From: Luke Date: Thu, 4 May 2017 12:50:29 -0700 Subject: [PATCH] update README --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 687653f..b85e766 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,9 @@ You can use the `Router` with the `MaterialApp.onGenerateRoute` parameter the `onGenerate` parameter like: `onGenerateRoute: router.generator`. You can then use `Navigator.push` and the flutter routing mechanism will match the routes -for you. You can also manually push to a route yourself. To do so: +for you. + +You can also manually push to a route yourself. To do so: ```dart router.navigateTo(context, "/users/1234");