-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathestilos.js
More file actions
62 lines (59 loc) · 1.17 KB
/
Copy pathestilos.js
File metadata and controls
62 lines (59 loc) · 1.17 KB
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
import {StyleSheet} from 'react-native'
const estilos = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center'
},
botão: {
margin: 20
},
baixo: {
flex: 1,
backgroundColor: 'transparent',
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'flex-end',
paddingBottom: '30%'
},
alto: {
flex: 1,
backgroundColor: 'transparent',
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'flex-start'
},
centro:{
flex: 1,
backgroundColor: 'transparent',
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center'
},
botãoPush: {
margin: 10,
color:'#007acc'
},
input:{
height: 25,
width: 225,
borderColor: '#007acc',
borderWidth: 1 ,
marginLeft:10 ,
paddingHorizontal:5,
maxHeight:25,
borderRadius: 12.5,
},
texto:{
fontSize:20,
margin:0,
textAlign:'center'
},
alert:{
alignSelf: 'center',
},
Talert:{
fontSize: 25,
color: '#a169'
}
})
export default estilos