route_navigator 1.4.0 copy "route_navigator: ^1.4.0" to clipboard
route_navigator: ^1.4.0 copied to clipboard

discontinuedreplaced by: navigator_plus

This package helps to manage the navigate between screens in an elegant and easy way.

route_navigator #

This package helps to manage the navigate between screens in an elegant and easy way.

Using #

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile and web development, and a full API reference.

Installation #

First, add route_navigator as a dependency in your pubspec.yaml file.

In your flutter project add the dependency:

dependencies:
  ...
  route_navigator:

For help getting started with Flutter, view the online documentation.

Example #

Please follow this example here.

Navigate screen

NavigateWithName.to(context, Routes.secondScreen,
  arguments: {'name': 'techdirr'}, result: (result) {
    if (result.resultOk) {
      log("Owner: ${result.data['ownerName']}");
    }
});

Fetch data from screen

NavigateWithName.getArguments(context);
6
likes
150
points
33
downloads

Publisher

unverified uploader

Weekly Downloads

This package helps to manage the navigate between screens in an elegant and easy way.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface

More

Packages that depend on route_navigator