-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEstilo.js
108 lines (104 loc) · 1.81 KB
/
Estilo.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
import { StyleSheet } from 'react-native'
const styles = StyleSheet.create({
container: {
flex: 1,
padding: 16,
justifyContent: 'center',
alignItems: 'center'
},
containerTelaFormulario: {
flex: 1,
padding: 16,
alignItems: 'center'
},
radioGroup: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
marginBottom: 20,
},
radioButton: {
flexDirection: 'row',
alignItems: 'center',
marginRight: 20,
},
containerCampo: {
flex: 1,
width: '100%',
alignItems: 'flex-start'
},
containerBototoesConf: {
flex: 1,
padding: 16,
alignItems: 'center',
justifyContent: 'flex-end',
},
titulo: {
fontSize: 24,
fontWeight: 'bold',
marginBottom: 20,
textAlign: 'center',
},
texto: {
fontSize: 15,
fontWeight: 'bold',
textAlign: 'center',
},
formulario: {
width: '100%',
height: 200
},
campo: {
flexDirection: 'row',
alignItems: 'center',
marginBottom: 20,
borderBottomWidth: 1,
borderBottomColor: 'forestgreen',
},
campoConf: {
flexDirection: 'row',
alignItems: 'center',
marginBottom: 20,
flexWrap:'wrap'
},
input: {
fontSize: 16,
marginLeft: 10,
flex: 1,
},
botao: {
width: 200,
},
botaoVoltar: {
marginBottom: 20,
width: 260,
},
item: {
flexDirection: 'row',
alignItems: 'center',
padding: 16,
borderBottomWidth: 1,
borderBottomColor: '#ccc',
},
itemText: {
marginLeft: 16,
fontSize: 18,
},
image: {
width: 50,
height: 50,
},
logoutButton: {
width: '40%',
height: '100',
marginLeft: '55%',
marginTop: '4%'
},
HistButton: {
width: '40%',
height: '100',
marginLeft: '4%',
marginTop: '-9.1%'
},
});
export default styles;