nuvigator 0.2.1
nuvigator: ^0.2.1 copied to clipboard
A powerful and strongly typed routing abstraction over Flutter navigator, providing some new features and an easy way to define routers with code generation.
CHANGELOG #
0.2.1 #
- Fix the bug when Android back button is pressed closing the app. Now, when the back button is pressed, the nuvigator will try to close the current page and will just close the app when doesn't have any pages to pop.
0.2.0 #
- Add
FlowRouter
back, compatible with the new API of nested Nuvigators - Increase version constraint of
analyzer
0.1.1 #
- Fix a bug when trying to call onDeepLinkNotfound
0.1.0+2 #
- Update pubspec.yaml dependencies versions
0.1.0+1 #
- Improve pub description and update packages
0.1.0 #
- [BREAKING] Major refactor and API revamp
- Create
Nuvigator
navigator widget - Make
Hero
animations work Screen
was renamed toScreenRoute
FlowRoute
is aScreenRoute
for nested Nuvigators.- Make
ScreenRoute
cary information about DeepLinks - Make
GlobalRouter
able to be created with callbacks and a baseRouter - Add
cupertinoDialogScreenType
ScreenType - Provide access to the
GlobalRouter
throughInheritedWidgets
- Remove the need to extend the
GlobalRouter
- Removal of
NavigationService
in favor ofScreenRoute
- Removal of
FlowRouter
in favor of nestedNuvigators
- Removal of
ScreenContext
in favor ofBuildContext
- Added code generation for creating code from a base Router defined
0.0.4 #
- Fix transition animation when coming from native
- Fix transition animation when popping from flow
0.0.3 #
FlowRouter
type now extendsObject
- The
arguments
of push methods was changed fromMap
toObject
ScreenWidget
now is generic to set args type (default isObject
)
0.0.2 #
- Add
popUntil
toNavigationService
0.0.1 #
- Initial version