Я опробовал предоставленный вами файл Лотти, и он работает.
Вот код, который я использовал в своем App.js
, чтобы заставить его работать.
import React, {Component} from 'react';
import {Platform, StyleSheet, View} from 'react-native';
import LottieView from 'lottie-react-native';
export default class App extends Component<Props> {
render() {
return (
<View style={styles.container}>
<LottieView
style={{flex: 1}}
source={require('./check.json')} {/* I think your issue is that you have the wrong path for your lottie file*/}
autoPlay
loop
/>
</View>
);
}
}
Обратите внимание, в моем проекте мои App.js
и мои check.json
находятся в одной папке.
Вот изображение его работы