-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.js
56 lines (47 loc) · 795 Bytes
/
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
var React = require("react-native");
var styles = React.StyleSheet.create({
container: {
flex:1,
flexDirection:'column',
justifyContent:'center',
marginTop:20,
},
saveView: {
flex:3,
},
listViewStyle: {
flex:7,
},
textInput: {
flex:1,
margin:20,
paddingRight: 3,
textAlign:'center',
},
textInputView: {
flex:2,
flexDirection:'row'
},
saveButton: {
flex:1,
margin: 30,
justifyContent:'center',
alignItems:'center',
backgroundColor:'green',
},
saveButtonText: {
color:'white',
fontWeight:"800",
fontSize:20,
},
listRow: {
flex:1,
justifyContent:'space-around',
flexDirection:'row',
},
listColumn: {
flex:1,
fontSize:25,
},
});
module.exports = styles;