在react-native上使用react-native-svg库时出错

时间:2017-09-24 20:05:28

标签: reactjs react-native

我想使用svg图像代替png图标,因为png渲染的图标质量不好。我有以下规格

mov  ax,16
mul  word ptr [0015h * 4 + 2]  ;Segment in high word -> Product in DX:AX
add  ax, [0015h * 4]           ;Offset in low word
adc  dx, 0                     ; -> Result in DX:AX=[0,1048575]

" npm install" ,当我在我的项目中导入react-native-svg时,它会抛出以下错误

"react-native": "^0.42.3",
"react-native-svg": "4.3.0",
"react": "^15.4.1"

任何人都有类似的问题或者可以帮助我同样的事情。缺少需要安装的依赖项?

2 个答案:

答案 0 :(得分:0)

实际上react-native-svg在依赖项中不包括react-native-web。 但是,它包含在“ /node_modules/react-native-svg/index.web.js”中。

只需运行此命令

npm i react-native-web

错误将得到解决

答案 1 :(得分:0)

您必须

yarn add react-native-web react-dom

根据这些文档 https://docs.expo.io/guides/running-in-the-browser/