-
Notifications
You must be signed in to change notification settings - Fork 72
Magellan 1.x Transitions
Ryan Moelter edited this page Jul 18, 2021
·
1 revision
navigator.overrideTransition(new CircularRevealTransition(targetView));
- DefaultTransition
- CircularRevealTransition
- CrossfadeTransition
- NoAnimationTransition
Navigator.withRoot(root)
.transition(new AwesomeTransition())
.build();
public class AwesomeTransition implements Transition {
@Override
public void animate(View from, final View to, NavigationType navType, Direction direction, Callback callback) {
// animate
// Call: callback.onAnimationEnd() when the animation is done
}
}
Made with 💚 by the Wealthfront Android Team.