replace big white close with more clean one

Moved to the right side, replaced with a less cluttered version.
This commit is contained in:
ncoelho 2019-09-17 19:46:23 +02:00
parent 3d2186790d
commit cc0b8376f8
4 changed files with 3 additions and 3 deletions

BIN
img/close-white.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 548 B

BIN
img/close-white@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 669 B

BIN
img/close-white@3x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 818 B

View File

@ -41,16 +41,16 @@ export default class CameraExample extends React.Component {
style={{
width: 40,
height: 40,
marginLeft: 24,
backgroundColor: '#FFFFFF',
backgroundColor: 'rgba(0,0,0,0.4)',
justifyContent: 'center',
borderRadius: 20,
position: 'absolute',
right: 16,
top: 64,
}}
onPress={() => this.props.navigation.goBack(null)}
>
<Image style={{ alignSelf: 'center' }} source={require('../../img/close.png')} />
<Image style={{ alignSelf: 'center' }} source={require('../../img/close-white.png')} />
</TouchableOpacity>
</SafeBlueArea>
);