Navigation for Riverpod
Managing Flutter navigation with riverpod.
Usage
Bootstrap
Replace your root ProviderScope
with a RiverpodNavigation
widget with your routing hierarchy and give the provided delegate
and parser
to your MaterialApp.router
factory.
Navigate
From a provider
A navigationProvider
is exposed and can be used to read the current navigation state.
To access the underlying notifier that allows various actions, use the navigationProvider.notifier
provider.
From a BuildContext
The notifier can be accessed with the navigation
extension method from the BuildContext
.
Pop behaviour
To customize the behaviour of pops when navigating back, a PopBehavior
callback can be provided to the RiverpodNavigation
instance. The result indicates whether the current pop action should be updated, cancelled or auto (default behavior which simply replace the route with the parent one).
URI rewriting
The uri can be modified before they are processed by the router with the uriRewriter
property. This can be useful for redirecting or normalizing uris.