-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyles.js
49 lines (47 loc) · 1.11 KB
/
Styles.js
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
// @flow
import { StyleSheet, Dimensions } from 'react-native';
let COMMON_SPACE = 10;
export default StyleSheet.create({
containerStyle: {
marginTop: COMMON_SPACE,
paddingHorizontal: COMMON_SPACE,
},
imageStyle: {
height: (Dimensions.get('window').height) * 0.246,
width: (Dimensions.get('window').width) - (COMMON_SPACE * 2),
backgroundColor: '#000',
borderRadius: COMMON_SPACE,
overflow: "hidden",
},
titleStyle: {
fontSize: 20,
marginTop: 5,
color: '#ffffff',
fontWeight: "800",
},
subTitleStyle: {
fontSize: 16,
marginTop: 2,
color: '#ffffff',
fontWeight: "500"
},
indicatorMainView: {
alignItems: "center",
paddingVertical: COMMON_SPACE
},
indicatorListView: {
justifyContent: 'center',
},
indicatorView: {
width: 8,
height: 8,
borderRadius: 4,
backgroundColor: 'black',
marginHorizontal: 3,
},
textView: {
bottom: 15,
left: 15,
position: "absolute"
}
});