Nipodemos
Committed by GitHub

Merge pull request #629 from dafinoer/doc

update readme
... ... @@ -226,6 +226,13 @@ Navigate to new screen:
Get.to(NextScreen());
```
Navigate to new screen with name. See more details on named routes [here](./documentation/en_US/route_management.md#navigation-with-named-routes)
```dart
Get.toNamed('/details');
```
To close snackbars, dialogs, bottomsheets, or anything you would normally close with Navigator.pop(context);
```dart
... ...