小编Man*_*noj的帖子

不变违规:requireNativeComponent:在本机反应的 UIManager 中找不到“FastImageView”

当我编写此代码时显示错误,请告诉我,我在哪里?

import React, { Component } from 'react'; import { StyleSheet, Text, View, TouchableOpacity, FlatList, Modal, } from 'react-native';

import FastImage from 'react-native-fast-image'

const Imagegallery = () => (
    <FastImage
        style={{ width: 200, height: 200 }}
        source={{
            uri: 'https://unsplash.it/400/400?image=1',
            priority: FastImage.priority.normal,
        }}
        resizeMode={FastImage.resizeMode.contain}
    />
)

export default Imagegallery
Run Code Online (Sandbox Code Playgroud)

native photo-gallery reactjs react-native react-native-android

6
推荐指数
2
解决办法
4394
查看次数