-
Notifications
You must be signed in to change notification settings - Fork 0
/
AppStyles.js
121 lines (120 loc) · 2.2 KB
/
AppStyles.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
import { StyleSheet, Dimensions } from 'react-native'
export default StyleSheet.create({
mainContainer: {
flex: 1,
zIndex: 0
},
viewContainer: {
position: 'absolute',
top: 20,
},
row: {
flexDirection: 'row',
alignSelf: 'center',
// width: 280,
// marginLeft: 40,
// marginRight: 40,
marginTop: 10,
paddingBottom: 10,
paddingLeft: 20,
paddingRight: 20,
paddingTop: 10
},
flexRow: {
width: 267,
marginLeft: 55,
marginRight: 55,
flexDirection: 'row',
justifyContent: 'space-around',
alignContent: 'center',
paddingLeft: 0,
paddingRight: 0,
marginBottom: 5
},
column: {
flexDirection: 'column',
alignSelf: 'center',
},
title: {
position: 'absolute',
top: 35,
// height: 30
},
titleText: {
fontFamily: 'Lato-Bold',
fontSize: 22,
textAlign: 'center',
// height: 25,
// marginBottom: 25,
fontWeight: 'bold',
color: '#000000'
},
subtitleText: {
fontFamily: 'Lato-Bold',
fontSize: 20,
marginTop: 10,
textAlign:'center',
alignSelf:'center',
fontWeight: 'bold',
color: '#6532ad'
},
buttonContainer: {
alignSelf: 'center',
marginTop: 30,
},
buttonText: {
fontFamily: 'Lato-Bold',
fontSize: 18,
color: '#ffffff',
fontWeight: 'bold'
},
iconLabelText: {
fontFamily: 'Lato-Regular',
fontSize: 12,
color: '#0057F0',
},
regularText: {
fontFamily: 'Lato-Regular',
fontSize: 16,
color: '#000000',
},
boldText: {
fontFamily: 'Lato-Bold',
fontSize: 18,
color: '#000000',
},
centerText: {
textAlign: 'center',
},
leftText: {
textAlign: 'left',
alignSelf: 'stretch'
},
rightText: {
textAlign: 'right',
alignSelf: 'stretch'
},
right: {
justifyContent: 'flex-end',
alignSelf: 'stretch'
},
column: {
flex: 1
},
textInput: {
height: 40,
width: Dimensions.get("window").width * 0.8,
borderBottomColor: 'gray',
borderBottomWidth: 1,
marginTop: 8
},
textInputContainer: {
width: Dimensions.get("window").width - 20,
alignItems: 'center',
margin: 10,
},
button: {
position: 'absolute',
bottom: 20
}
})