react-native-lightbox icon indicating copy to clipboard operation
react-native-lightbox copied to clipboard

Issue with border radius on android

Open pi-sw opened this issue 8 years ago • 1 comments

I have a problem with non-transparent residue on android: android

Whereas on iOS it is working fine: ios

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>

pi-sw avatar Oct 17 '17 11:10 pi-sw

Apparently border radius didnt work with android period. It was just fixed in RN 0.51-rc

The promises of a stable RN continue...

stokesbga avatar Nov 11 '17 20:11 stokesbga