You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an issue with the borderRadius prop. The svg style prop is not using it.
ex:
<Image
style={{borderRadius: 70}}
source={getCountryFlagIcon(this.props.country.toLocaleLowerCase())}
/>
It works when I apply the borderRadius to a parent View but it's having a weird behavior on android. On android, it's rendering the svg with no borderRadius for a second and then apply the style of the parent view. It's the same when I click on the svg, the style of the parent view disappear for a second.
Everything works fine on ios.
Any idea about that?
Thank you
The text was updated successfully, but these errors were encountered:
Can you also try overflow: hidden along with borderRadius, so that the WebView may get properly hidden? borderRadius sometimes used to just draw the radius but allowed the inner content to flow out, so maybe this would help.
Hello!
I have an issue with the borderRadius prop. The svg style prop is not using it.
ex:
<Image
style={{borderRadius: 70}}
source={getCountryFlagIcon(this.props.country.toLocaleLowerCase())}
/>
It works when I apply the borderRadius to a parent View but it's having a weird behavior on android. On android, it's rendering the svg with no borderRadius for a second and then apply the style of the parent view. It's the same when I click on the svg, the style of the parent view disappear for a second.
Everything works fine on ios.
Any idea about that?
Thank you
The text was updated successfully, but these errors were encountered: