如何在react-native中显示SVG文件

时间:2019-05-23 14:56:28

标签: react-native react-native-svg

我想从Illustrator生成的SVG文件中渲染图像,我正在使用 react-native 0.59, react-native-svg react-native- svg-uri , 这是我的jsx:

  <View style={styles.aboutSection}>
              <SvgUri
                width="150"
                height="150"
                source={require('../../assets/images/logo_blue.svg')}
              />
    </View>

和我的SVG文件:

<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
     viewBox="-574 823.3 20 14" style="enable-background:new -574 823.3 20 14;" xml:space="preserve">
<style type="text/css">
    .st0{fill:#2A327B;}
</style>
<g>
    <g transform="translate(-320.000000, -1983.000000)">
        <g transform="translate(40.000000, 1680.000000)">
            <path class="st0" d="M-284,1140.3c-7.4,0-10-7-10-7s3.4-7,10-7c6.7,0,10,7,10,7S-277.3,1140.3-284,1140.3L-284,1140.3z
                 M-284,1129.3c-2.2,0-4,1.8-4,4s1.8,4,4,4s4-1.8,4-4S-281.8,1129.3-284,1129.3L-284,1129.3z M-284,1135.3c-1.1,0-2-0.9-2-2
                s0.9-2,2-2s2,0.9,2,2S-282.9,1135.3-284,1135.3L-284,1135.3z"/>
        </g>
    </g>
</g>
</svg>

调试时没有显示,缺少什么,还有没有更好的方法来显示SVG文件中的图像? 使用SVGR将它们转换为jsx是更好的方法,或者有其他方法可以实现。

1 个答案:

答案 0 :(得分:1)

由于该软件包似乎不再维护,因此经过一段时间的搜索,我最终在react-native-icons的帮助下使用了自定义网络字体:

  1. (可选)我将用于此目的的SVG尺寸最小化SVG minizer
  2. 使用icomoon转换字体
  3. 将生成的字体添加到根目录下的 assets / fonts 文件夹中
  4. 在您的 packages.json
  5. 中添加链接器
    "rnpm": {
        "assets": [
        "./assets/fonts/"
        ]
    }
  1. 并使用react-native link
  2. 进行链接
  3. 要创建一个自定义图标组件,我使用了 react-native-icons 具有 createIconSetFromIcoMoon 函数以呈现从IcoMoon生成的字体,还具有从Fontello
  4. 生成的字体。

在我的自定义组件MyIcon.js中,我还添加了生成的selection.json。

import { createIconSetFromIcoMoon } from 'react-native-vector-icons';
import MyIconConfig from '../../../selection.json';

const MyIcon = createIconSetFromIcoMoon(MyIconConfig, 'MyIcon-icons', 'MyIcon-icons.ttf');
 //name of font I used in the website to generate font and name of ttf files generated
export default MyIcon;

我在组件中使用它,我在demo.html中找到了它们的图标名称:

<MyIcon
 style={styles.customStyle}
 name="previous"
 size={18}
 color=’red’
/>

注意:我首先遇到问题,出现框而不是图标,我将 react-native-icons 降级为 6.3.0 并且我已经卸载了我的应用并通过重新运行来重新安装它:

react-native run-android