faster-image
faster-image copied to clipboard
[ANDROID] Why borderRadius in image prop is not the same in style prop
I have a circle image borderRadius: size * 0.5
This style is not apply to the image so i put borderRadius prop in image, but that do a radius but not the same, it like a little round, not a perfect circle.
My only solution is to <View style={{borderRadius: size*0.5, overflow: 'hidden'}}> <FasterImageView source={{url, resizeMode:'cover'}} style={{flex: 1}}> </View>
It's excepted behaviour ? How to calculate the borderradius for faster image ?
I have the same problem. This should be fixed! borderRadius should be used in style. It is weird otherwise...