vault-development / react-native-svg-uri

Render SVG images in React Native from an URL or static file
850 stars 334 forks source link

Raw text cannot be used outside of a <Text> tag . Not rendering string: '' #118

Open OdaiTu opened 6 years ago

OdaiTu commented 6 years ago

i got this error when trying use my svg logo but i used before svg icons and they works good but the issue is with my logo !

here is my svg

http://api.rb2000.ps/uploads/uploadCenter/2018/03/1520237054AaYER.svg

Dylan-Wells-at-LION commented 6 years ago

I was able to fix this by removing everything in the .svg file that is not the SVG itself.

As in I removed these things:

\<?xml version="1.0" encoding="utf-8"?> \

and the style tag that was in there:

TheIndianRaj commented 5 years ago

@Dylan-at-LION your solution worked for me. Thank you.