Skip to content

Commit 024b7d5

Browse files
committed
fix(android): lottie does not support clearing animation (src=null)
1 parent 000e6ab commit 024b7d5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lottie.android.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ export class LottieView extends LottieViewBase {
118118
[srcProperty.setNative](src: string) {
119119
const view = this.nativeViewProtected;
120120
if (!src) {
121-
view.setAnimation(null);
121+
// lottie does not support "clearing the animation"
122+
// view.setAnimation(null);
122123
} else if (src[0] === '{') {
123124
view.setAnimationFromJson(src, null);
124125
} else if (src.startsWith(Utils.RESOURCE_PREFIX)) {

0 commit comments

Comments
 (0)