chitezh / react-native-svg-image

Load SVG images from network; Does not work with local svgs
MIT License
53 stars 9 forks source link

Unidentified line under SVG image #22

Open skb1129 opened 6 years ago

skb1129 commented 6 years ago

After updating my application to react native version 0.55.4, I am seeing this unique black line under the SVG image only on iPhone X and the new iPhone XR, XS and XS Max. screenshot 2018-10-08 at 11 49 43 am

yang286572 commented 5 years ago

I've had the same problem as you, but I'm Text, and I can change the font size. Have you solved it?

skb1129 commented 5 years ago

@yang286572 No I haven't. Do you have any workarounds for this?

ymc-thzi commented 5 years ago

Had the same issue. Seems to be a border, so I just set the border color of the bounding container to null. Fixed it in my case... <View style={[styles.img, { borderColor: null }]}> <SVGImage...