Invariant Violation: requireNativeComponent: "RCTImageView" was not found in the UIManager.

Podfile 文件添加 'RCTImage'

但是如果你的结构不同,那你就要根据实际路径修改下面的:path

pod 'React', :path => '../node_modules/react-native', :subspecs => [
'Core',
'CxxBridge', # 如果RN版本 >= 0.47则加入此行
'DevSupport', # 如果RN版本 >= 0.43,则需要加入此行才能开启开发者菜单
'RCTText',
'RCTImage',
'RCTNetwork',
'RCTWebSocket', # 调试功能需要此模块
'RCTAnimation', # FlatList和原生动画功能需要此模块

在这里继续添加你所需要的其他RN模块

]

你可能感兴趣的:(Invariant Violation: requireNativeComponent: "RCTImageView" was not found in the UIManager.)