-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathloadingSceneStyles.js
127 lines (119 loc) · 2.32 KB
/
loadingSceneStyles.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
var React = require('react-native');
var {
StyleSheet,
Dimensions,
} = React;
const { width, height } = Dimensions.get('window')
module.exports = StyleSheet.create({
Policy :{
width:width/17 ,
height : height/17,
top : height /50,
left : width*8/9,
shadowColor: "#000000",
shadowOpacity: 0.2,
shadowRadius: 1,
shadowOffset: {
height: 2,
width: 0
}
},
TextRunnForGood : {
fontFamily : 'Roboto-Regular',
fontSize : width*0.04
},
navBar: {
height: height / 5,
width: width,
position: 'absolute',
top: 0,
bottom: 0,
left: 0,
right: 0,
},
imgPolicy:{
height:width/10,
width:width/10,
top: -width/15,
bottom: 0,
left: width,
right: 0,
},
ViewForButton:{
position: 'absolute',
height: 150,
bottom: 0,
width: width,
padding: 20,
justifyContent: 'center',
alignItems: 'center',
},
text : {
paddingTop: 10,
textAlign: 'center',
color : '#7002FF',
marginBottom : 50,
fontFamily : 'Roboto-Regular'
},
container: {
flex: 1,
alignItems : 'center'
},
welcome: {
fontSize: width*0.07,
textAlign: 'center',
margin: 10,
color: '#460D80',
marginTop : width/2,
fontFamily : 'Roboto-Light'
},
buttomGetText: {
fontFamily: 'Helvetica',
fontSize: width*0.04,
textAlign: 'center',
margin: width*0.025,
color: '#fff',
fontFamily : 'Roboto-Regular',
},
buttonSingUpWithEmail: {
height: height/12,
width: width*8/10,
paddingVertical: 10,
paddingHorizontal: 20,
backgroundColor: '#7002FF',
marginBottom : 10,
borderRadius : 5,
marginTop : width/3,
shadowColor: "#000000",
shadowOpacity: 0.5,
shadowRadius: 2,
shadowOffset: {
height: 0,
width: 0
}
},
buttonSingUpWithFacebook: {
height: height/12,
width: width*8/10,
paddingVertical: 10,
paddingHorizontal: 20,
backgroundColor: '#3b5998',
borderRadius : 5,
shadowColor: "#000000",
shadowOpacity: 0.5,
shadowRadius: 2,
shadowOffset: {
height: 0,
width: 0
}
},
imageLogo: {
left: width/2 - width/6 ,
right: 0,
top: height/5- width/5,
bottom:0 ,
position: 'absolute',
height:width/3,
width:width/3,
}
});