go_transitions 0.3.1
go_transitions: ^0.3.1 copied to clipboard
Easily create, combine and apply transitions to routes with GoTransitions.
Changelog #
0.3.1 #
- Improved location matcher for
GoTransition.build
.
0.3.0 #
Introduces GoTransitionPage
, an extended CustomTransitionPage
with:
PageTransitionsBuilder.buildTransitions
as pageTransitionsBuilder.PageRoute.canTransitionTo
as canTransitionTo.PageRoute.canTransitionFrom
as canTransitionFrom.PageRoute.allowSnapshotting
as allowSnapshottting.
0.2.0 #
Flutter works with Widget Function(PageRoute, BuildContext, Animation<double>, Animation<double>, Widget)
signature. This release changes the signature of GoTransition.builder
to match this.
- Upgraded
RouteTransitionsBuilder
toPageRouteTransitionsBuilder
for consistency withflutter
'sPageRouteBuilder
. - Added
canTransitionTo
andcanTransitionFrom
toGoTransition.build
. - Added
!fullscreenDialog
guard as default clause tocanTransitionTo
, needed for usingMaterialPage
andCupertinoPage
transitions, so it won't perform undesired outgoing transition when the next route is a fullscreen dialog. - Hide protected api.
- Updated
README.md
.
0.1.0 #
- Initial release.