-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.js
More file actions
47 lines (45 loc) · 832 Bytes
/
Copy pathstyles.js
File metadata and controls
47 lines (45 loc) · 832 Bytes
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
const React = require('react-native')
const {StyleSheet} = React
var styles = StyleSheet.create({
container: {
backgroundColor: '#f2f2f2',
flex: 1,
},
listView: {
flex: 1,
},
listItem: {
borderBottomColor: '#eee',
borderColor: 'gray',
flexDirection:'row',
alignItems:'center',
borderWidth: 1,
padding:20
},
listItemTitle: {
flex: 6,
color: '#000',
fontSize: 16,
},
listItemAction: {
flex: 1,
width: 40,
height: 40
},
navbar: {
alignItems: 'center',
backgroundColor: '#fff',
borderBottomColor: '#eee',
borderColor: 'transparent',
borderWidth: 1,
justifyContent: 'center',
height: 54,
flexDirection: 'row'
},
navbarTitle: {
color: '#444',
fontSize: 16,
fontWeight: "500"
}
})
module.exports = styles