morpheus 0.6.4 morpheus: ^0.6.4 copied to clipboard
A Flutter package for easily implementing Material Design navigation transitions.
Changelog #
[0.6.4] #
[0.6.1] - 2019-04-25 #
Fixes #
- Fixed
MorpheusPageRoute
transition element not clipping the child screen.
[0.6.0] - 2019-04-25 #
Added #
- Added
transitionColor
parameter toMorpheusPageRoute
that lets you control the color of the transition element. MorpheusPageRoute
can now be typed (e.g.final Model model = await Navigator.of(context).push(MorpheusPageRoute(...))
).
[0.5.0] - 2019-04-25 #
Added #
- Added
shapeBorderTween
parameter toMorpheusPageRoute
that lets you control the shape of the child screen. - (Under the hood) Split
MorpheusPageRoute.buildTransitions
into two seperate transitions, one specifically for vertical-only transitions, and another that's not as fancy, but is more consistent across different sizes and positions.