How to show SVG file on React Native?

I used the following solution:

  1. Convert .svg image to JSX with https://svg2jsx.herokuapp.com/
  2. Convert the JSX to react-native-svg component with https://react-svgr.com/playground/?native=true (make sure the “React Native” checkbox is checked)

Leave a Comment