-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.js
More file actions
85 lines (79 loc) · 1.63 KB
/
Copy pathstyles.js
File metadata and controls
85 lines (79 loc) · 1.63 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import { StyleSheet } from 'react-native';
export default StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#f9f9f9',
},
header:{
paddingTop:10,
height:64,
backgroundColor:'#FFF',
alignItems:'center',
justifyContent:'center',
marginBottom:5,
},
headerText:{
fontSize:17,
fontWeight:'bold',
},
itemBox:{
flexDirection:'row',
margin: 5,
marginLeft:8,
marginRight:8,
backgroundColor:'#FFF',
borderRadius:20,
padding:12,
borderWidth:1,
alignItems:'center',
justifyContent:'center',
shadowColor:'#000',
elevation:1,
shadowOffset:{ width: 0, height: 0 },
shadowOpacity:0.1
},
itemTitle:{
flex:1,
color:'#000',
fontSize:14,
},
itemCheckTrue:{
flex:0,
width:20,
height:20,
borderRadius:10,
backgroundColor:'green'
},
itemCheckFalse:{
flex:0,
width:20,
height:20,
borderRadius:10,
backgroundColor:'red'
},
itemTitleTrue:{
color:'#ccc',
textDecorationLine:'line-through',
},
itemContainer:{
flex:1,
},
createButton:{
alignSelf:'center',
backgroundColor:'#06f',
width:50,
height:50,
alignItems:'center',
justifyContent:'center',
borderRadius:25,
marginBottom:0,
},
createButtonText:{
color:'#FFF',
fontSize:50,
},
/*ButtonContainer:{
alignItems:'center',
justifyContent:'center',
}*/
});