We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 000e6ab commit 024b7d5Copy full SHA for 024b7d5
src/lottie.android.ts
@@ -118,7 +118,8 @@ export class LottieView extends LottieViewBase {
118
[srcProperty.setNative](src: string) {
119
const view = this.nativeViewProtected;
120
if (!src) {
121
- view.setAnimation(null);
+ // lottie does not support "clearing the animation"
122
+ // view.setAnimation(null);
123
} else if (src[0] === '{') {
124
view.setAnimationFromJson(src, null);
125
} else if (src.startsWith(Utils.RESOURCE_PREFIX)) {
0 commit comments