React Native 这些文件都不存在:* 屏幕\加载器. json

enxuqcxy  于 2023-01-09  发布在  React
关注(0)|答案(1)|浏览(120)

我已经安装了AnimatedLoader,但我收到一个错误,说这些文件都不存在:第一个月
从“react-native-animated-loader”导入动画加载程序
在我的代码中我使用了它。

<AnimatedLoader
    visible={visible}
    overlayColor="rgba(255,255,255,0.75)"
    source={require("./loader.json")}
    animationStyle={styles.lottie}
    speed={1}
  />

你知道我该如何解决这个错误吗?
我尝试了上面的操作,但收到了上面的错误消息

kuarbcqp

kuarbcqp1#

您需要Loader

export default class Loader extends React.Component {
constructor(props) {
super(props);
this.state = { visible: false };
}

componentDidMount() {
setInterval(() => {
  this.setState({
    visible: !this.state.visible
  });
}, 2000);
}

了解更多here

相关问题