navi 0.0.4 copy "navi: ^0.0.4" to clipboard
navi: ^0.0.4 copied to clipboard

outdated

A declarative navigation framework for Flutter, based on Navigator 2.0.

Navi - A declarative navigation framework for Flutter, based on Navigator 2.0.

Declarative navigation #

Declarative navigation is an example of declarative programming , that expresses the logic of a computation without describing its control flow.

Using declarative navigation is only powerful if

  • the provided API is simple enough
  • your application is reasonable split into manageable domains (or stacks in this library)

An example, where declarative shines is to manage a chain of pages to complete a task is quite common. Using imperative approach is usually more difficult in this case.

Chain of pages scenario (also known as flow of pages) is just one case, you can use with Navi. This library is definitely much more than that.

About #

The goal of Navi package is to create a friendly declarative navigation API for Flutter projects. It depends heavily on Navigator 2.0.

Key requirements of the API:

  • Easy to learn
  • Flexible: easily integrate with other architectural elements, especially, state management (ex. Bloc) and dependency injection (ex. get_it).
  • Modularization
    • friendly to projects, which require splitting into multiple teams
    • each stack can be considered as an isolated module
    • stacks should be reusable in other stacks
    • developers can freely organize stacks in the way they want

To use the library, you only need to know how to use 3 simple classes:

  • PageStack: declare the pages of a stack, which are updated accordingly to current state.

  • RouteStack extends PageStack with routing capability. If you don't need deep linking or target web, PageStack is enough for your app.

    Note that, routing is currently only working for root stack. Support routing for child stacks and nested stacks will be available soon.

  • StackOutlet is a normal widget, which build pages of a stack.

Please see this full source code example app.

Nested stack #

Because StackOutlet is just a normal widget, you only need to use this widget to build nested stacks like you would do with other widgets.

It's commonly used together with BottomNavigationBar, but it will definitely work with other components and designs.

If you want to keep state of nested stacks, you could use IndexedStack.

Please see this example.

TODO: Imperative navigation #

Basically, you will not need this legacy approach if you can split your app into manageable stacks. However, it will still be useful in many cases and will be supported.

  • context.navi.byUrl('details'): navigate to relative URL
  • context.navi.byUrl('/products/1'): navigate to absolute URL (begin with a slash)
  • context.navi.byUrl('/products/:id', pathParams: {'id': 1})
  • context.navi.byStack(ProductStack(id: 1))
  • context.navi.byStack(ProductStack(id: 1, categoryId: 3))
  • context.navi.byStack(ProductStack(id: 1, onNavigated: () {}), onFailure: () {})
  • context.navi.pop(): move up one level in the current stack or exit if there's no upper page.
  • context.navi.back(): move back to the previous page in the history.

TODO: Sync URL and stack state? #

You will have 2 options to choose:

  • Don't use code generator: path parameters and query parameters are provided to you as String. You need to manually validate and convert to your types.
  • Use code generator to generate typesafe interfaces, which allow you to sync path parameters and query parameters to your variable in the defined types automatically.
16
likes
0
pub points
42%
popularity

Publisher

verified publisherzenonine.com

A declarative navigation framework for Flutter, based on Navigator 2.0.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on navi