-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.js
79 lines (76 loc) · 1.66 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import { StyleSheet, Dimensions } from 'react-native';
const ScreenWidth = Dimensions.get('window').width;
const ScreenHeight = Dimensions.get('window').height;
const styleSheet = StyleSheet.create({
container: {
flex: 1,
backgroundColor: 'transparent',
},
flatList: {
flex: 1,
// backgroundColor: 'gray',
},
footer: {
position: 'absolute',
height: '7%',
width: ScreenWidth,
left: 0,
bottom: 0,
// flexDirection: 'row',
// alignSelf: 'center',
// alignItems: 'center',
// justifyContent: 'center',
// backgroundColor: 'purple',
},
pageControl: {
flex: 3,
height: '100%',
// backgroundColor: 'green',
alignItems: 'center',
// marginBottom: ScreenWidth * 0.15,
// alignSelf: 'flex-start',
},
skipSlideShow: {
width: '100%',
height: 30,
},
initAgreeButton: {
width: ScreenWidth * 0.3,
// height: ScreenWidth * 0.13,
// backgroundColor: 'green',
alignSelf: 'flex-end',
justifyContent: 'center',
// alignItems: 'center',
fontSize: 13,
borderRadius: ScreenHeight * 0.5,
marginRight: ScreenWidth * 0.03,
},
initAgreeBtnText: {
fontSize: 15,
color: '#FFF',
textAlign: 'right',
// backgroundColor: 'blue',
// fontFamily: RobotoMedium,
},
// --- SlideShow Item - CSS ---
bannerView: {
flex: 1,
},
banner: {
height: ScreenHeight,
width: ScreenWidth,
},
// --- PageControl Item - CSS ---
dotListView: {
flex: 1,
justifyContent: 'center',
},
dotView: {
width: 7,
height: 7,
borderRadius: 5,
// backgroundColor: 'green',
marginHorizontal: 4,
},
});
export default styleSheet;