fix(android): crash on slide transition (#9289)

The 'N' android `CustomTransition` widget takes an `AnimatorSet` and not an `ObjectAnimator`
This commit is contained in:
Martin Guillon
2021-04-07 04:41:24 +02:00
committed by GitHub
parent f42acd817f
commit e73cebf765

View File

@@ -113,7 +113,9 @@ export class SlideTransition extends Transition {
}
animator.setInterpolator(this.getCurve());
return animator;
const animatorSet = new android.animation.AnimatorSet();
animatorSet.play(animator);
return animatorSet;
}
public toString(): string {