navigation constant

MethodChannel const navigation

A JSON MethodChannel for navigation.

The following incoming methods are defined for this channel (registered using MethodChannel.setMethodCallHandler):

  • popRoute, which is called when the system wants the current route to be removed (e.g. if the user hits a system-level back button).

  • pushRoute, which is called with a single string argument when the operating system instructs the application to open a particular page.

  • pushRouteInformation, which is called with a map, which contains a location string and a state object, when the operating system instructs the application to open a particular page. These parameters are stored under the key location and state in the map.

The following methods are used for the opposite direction data flow. The framework notifies the engine about the route changes.

  • selectSingleEntryHistory, which enables a single-entry history mode.

  • selectMultiEntryHistory, which enables a multiple-entry history mode.

  • routeInformationUpdated, which is called when the application navigates to a new location, and which takes two arguments, location (a URL) and state (an object).

  • routeUpdated, a deprecated API which can be called in the same situations as routeInformationUpdated but whose arguments are routeName (a URL) and previousRouteName (which is ignored).

These APIs are exposed by the SystemNavigator class.

See also:

Implementation

static const MethodChannel navigation = OptionalMethodChannel(
    'flutter/navigation',
    JSONMethodCodec(),
);