voyager 0.7.2 copy "voyager: ^0.7.2" to clipboard
voyager: ^0.7.2 copied to clipboard

outdated

Router and basic dependency injection library for Flutter. Define navigation paths in YAML and power them up with custom plugins.

0.7.2 #

  • VoyagerListView, a widget that allows mapping a list of items onto respective list of paths and then displaying them

0.7.1 #

  • add optional Key constructor parameter to VoyagerWidget and VoyagerStatelessWidget

0.7.0 #

  • ...and we're back to stateful widget by default - while you should use StatelessWidget whenever possible, navigation is causing widget recreation which means recreation of Voyager instance - and that's something we don't want to do.
  • generator now supports CupertinoPageRoute that can be specified via additional parameter
generator(routeType: RouterNG.cupertinoRoute)
  • VoyagerArgument is available via Provider whenever you navigate with an argument
  • ability to dispose resources created with WidgetPlugins via onDispose callback:
output.onDispose(() {
  print("disposing resources");
});

0.6.1 #

  • display information in case dartfmt is missing from your path and you're using code generation tool.

0.6.0 #

SOME BREAKING CHANGES #

  • VoyagerWidget becomes stateless by default. If you want to have stateful behavior, please use VoyagerStatefulWidget
  • Dropped Voyager.fromPath method, it was redundant and confusing. Use constructor directly instead.
  • It is now recommended to wrap your app with Provider<RouterNG>. By doing this you can ommit passing the router parameter to every VoyagerWidget and thus making widget tree more compact since VoyagerWidget don't have to provide router instance themselves.
Provider<RouterNG>.value(
  value: router,
  child: MaterialApp(
    home: VoyagerWidget(path: initalPath),
    onGenerateRoute: router.generator()
  )
)
  • VoyagerWidget has now extra cache parameter, meaning it will use RouterNG's caching internally to resolve Voyager instance faster. Depending on your use case you might want to use this or not. Such Voyager instance has no parent.

The decision to change VoyagerWidget to stateless widget and removal of fromPath method was an inspiration after reading the following articles:

It's a MUST READ for any Flutter developer.

0.5.2 #

  • update to patched code generator version

0.5.1 #

  • decrease occurences of voyager instance creation

0.5.0 #

You will be automated, resistance is futile.

BREAKING CHANGES #

  • automated widget tests (EXPERIMENTAL)
  • removal of deprecated VoyagerProvider, see version 0.2.0 for migration steps (VoyagerProvider will return in a changed form...)
  • removal of TypePlugin - it's redundant, omit it in plugins list but still use type in your specs for code generation goodness
  • RedirectPlugin, allows mapping virtual paths to existing ones
  • ScreenPlugin is now called WidgetPlugin, you also need to change screen to widget in your yaml/json specs

0.4.2 #

  • use dartfmt to make sure generated code is formatted corectly

0.4.1 #

  • package health

0.4.0 #

  • code generation for paths, simply run flutter packages pub run voyager:codegen at the top of your flutter project and behold!

0.3.0 #

0.2.3 #

  • json support

0.2.2 #

  • formatting

0.2.1 #

  • fixes around how VoyagerWidget reacts to hot reload
  • improve sample app
  • add a sample app gif to README

0.2.0 #

API DEPRECATION

  • VoyagerProvider is being phased out. Internally Voyager will depend on provider more popular within the community.

Migration:

  • change VoyagerProvider.of(context) to Provider.of<Voyager>(context)
  • change VoyagerProvider.routerOf(context) to Provider.of<RouterNG>(context)

0.1.1 #

  • Package health fixes

0.1.0 #

  • Initial release
27
likes
0
pub points
0%
popularity

Publisher

verified publishervishna.dev

Router and basic dependency injection library for Flutter. Define navigation paths in YAML and power them up with custom plugins.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, provider, sprintf, yaml

More

Packages that depend on voyager