mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
fix(android): crash on slide transition (#9289)
The 'N' android `CustomTransition` widget takes an `AnimatorSet` and not an `ObjectAnimator`
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user