How to show SVG file on React Native?

后端 未结 13 1588
被撕碎了的回忆
被撕碎了的回忆 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:40

    Install react-native-svg-transformer

    npm i react-native-svg-transformer --save-dev

    I'm using SVG as following and it works fine

    import LOGOSVG from "assets/svg/logo.svg"
    

    in render

    
      
    
    

提交回复
热议问题