react-native-lightbox
react-native-lightbox copied to clipboard
Issue with border radius on android
I have a problem with non-transparent residue on android:

Whereas on iOS it is working fine:

Code snippet:
<Lightbox navigator={this.props.navigator}
renderContent={this.renderLightboxContent(profileImage)}
underlayColor='transparent'
>
<Image
style={{
backgroundColor: colors.backgroundColor,
borderRadius: 41,
height: 82,
width: 82,
}}
source={profileImage}
/>
</Lightbox>
Apparently border radius didnt work with android period. It was just fixed in RN 0.51-rc
The promises of a stable RN continue...