restorationScopeId property

String? restorationScopeId
final

Restoration ID to save and restore the state of the Navigator built by this CupertinoTabView.

If a restoration ID is provided, the navigator will persist its internal state (including the route history as well as the restorable state of the routes) and restore it during state restoration.

If no restoration ID is provided, the route history stack will not be restored and state restoration is disabled for the individual routes as well.

The state is persisted in a RestorationBucket claimed from the surrounding RestorationScope using the provided restoration ID. Within that bucket, the Navigator also creates a new RestorationScope for its children (the Routes).

See also:

  • RestorationManager, which explains how state restoration works in Flutter.
  • RestorationMixin, which contains a runnable code sample showcasing state restoration in Flutter.
  • Navigator, which explains under the heading "state restoration" how and under what conditions the navigator restores its state.
  • Navigator.restorablePush, which includes an example showcasing how to push a restorable route unto the navigator.

Implementation

final String? restorationScopeId;