- Remove deprecated method
- Test package at many dart and flutter versions to avoid break changes
- Fix documentation typo
- Create RouteParams.of(context) - allowing get the route params easily
Before this version the routes was:
final Map<String, WidgetBuilder> routes;
Now the routes are:
final Map<String, PageRouteBuilder> routes;
- Add ability to use custom transition - The
DefaultPageRouteBuilder
will use theMaterialPageRoute
, but now you can implement your transition using yourPageRouteBuilder
- Initial version.