How to show SVG file on React Native?

后端 未结 13 1582
被撕碎了的回忆
被撕碎了的回忆 2020-12-12 11:13

I want to show svg files (I have bunch of svg images) but the thing I couldn\'t find the way to show. I tried to use Image and Use componen

13条回答
  •  时光取名叫无心
    2020-12-12 11:36

    Note: Svg does not work for android release versions so do not consider for android. It will work for android in debug mode only. But it works fine for ios.

    Use https://github.com/vault-development/react-native-svg-uri

    Install

    npm install react-native-svg-uri --save
    react-native link react-native-svg # not react-native-svg-uri
    

    Usage

    import SvgUri from 'react-native-svg-uri';
    
    
    
    

提交回复
热议问题