1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
import {StyleSheet} from 'react-native';
import {normalize, SCREEN_WIDTH} from '../../utils/layouts';
export const styles = StyleSheet.create({
saveButton: {
zIndex: 1,
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
width: (SCREEN_WIDTH - 100) / 2,
},
saveButtonLabel: {
color: 'white',
fontWeight: '700',
fontSize: normalize(12),
lineHeight: normalize(14.32),
marginTop: 5,
zIndex: 999,
},
flashButtonContainer: {
position: 'absolute',
backgroundColor: '#808080',
opacity: 0.25,
zIndex: 1,
top: normalize(50),
right: 0,
marginRight: normalize(18),
height: 86,
width: 49,
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
borderRadius: 30,
},
galleryIcon: {
borderWidth: 2,
borderColor: 'white',
borderRadius: 5,
width: 40,
height: 40,
},
galleryIconEmpty: {
borderWidth: 2,
borderColor: 'white',
borderRadius: 5,
width: 40,
height: 40,
backgroundColor: 'grey',
},
flashIcon: {
zIndex: 2,
},
});
|