-
Notifications
You must be signed in to change notification settings - Fork 0
/
Minecell.js
134 lines (126 loc) · 5.07 KB
/
Minecell.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
Image,
TouchableOpacity,
Platform,
} from 'react-native';
export default class MyCell extends Component{
render() {
return (
<View style={{flex:1}}>
<TouchableOpacity onPress={()=>{alert('点击了')}}>
<View style={styles.container}>
<View style={styles.leftViewStyle}>
<Image source={require('./images/我的信息.png')} style={styles.leftImgStyle} />
<Text style={styles.leftTitleStyle}>我的数据</Text>
</View>
<View style={styles.rightViewStyle}>
<View style={{flexDirection:'row',alignItems:'center'}}>
<Text style={{color:'gray'}}>89</Text>
<Image source={require('./images/箭头.png')} style={{width:8, height:13, marginRight:8, marginLeft:5}} />
</View>
</View>
</View>
</TouchableOpacity>
<TouchableOpacity onPress={()=>{alert('点击了')}}>
<View style={styles.container}>
<View style={styles.leftViewStyle}>
<Image source={require('./images/视频.png')} style={styles.leftImgStyle} />
<Text style={styles.leftTitleStyle}>通话设置</Text>
</View>
<View style={styles.rightViewStyle}>
<View style={{flexDirection:'row',alignItems:'center'}}>
<Image source={require('./images/箭头.png')} style={{width:8, height:13, marginRight:8, marginLeft:5}} />
</View>
</View>
</View>
</TouchableOpacity>
<TouchableOpacity onPress={()=>{alert('点击了')}}>
<View style={styles.container}>
<View style={styles.leftViewStyle}>
<Image source={require('./images/足迹.png')} style={styles.leftImgStyle} />
<Text style={styles.leftTitleStyle}>日迹</Text>
</View>
<View style={styles.rightViewStyle}>
<View style={{flexDirection:'row',alignItems:'center'}}>
<Image source={require('./images/箭头.png')} style={{width:8, height:13, marginRight:8, marginLeft:5}} />
</View>
</View>
</View>
</TouchableOpacity>
<TouchableOpacity onPress={()=>{alert('点击了')}}>
<View style={styles.container}>
<View style={styles.leftViewStyle}>
<Image source={require('./images/关于我们.png')} style={styles.leftImgStyle} />
<Text style={styles.leftTitleStyle}>关于我们</Text>
</View>
<View style={styles.rightViewStyle}>
<View style={{flexDirection:'row',alignItems:'center'}}>
<Image source={require('./images/箭头.png')} style={{width:8, height:13, marginRight:8, marginLeft:5}} />
</View>
</View>
</View>
</TouchableOpacity>
<TouchableOpacity onPress={()=>{alert('点击了')}}>
<View style={styles.container}>
<View style={styles.leftViewStyle}>
<Image source={require('./images/a.png')} style={styles.leftImgStyle} />
<Text style={styles.leftTitleStyle}>设置</Text>
</View>
<View style={styles.rightViewStyle}>
<View style={{flexDirection:'row',alignItems:'center'}}>
<Image source={require('./images/箭头.png')} style={{width:8, height:13, marginRight:8, marginLeft:5}} />
</View>
</View>
</View>
</TouchableOpacity>
</View>
);
}
};
const styles = StyleSheet.create({
container: {
// 主轴的方向
flexDirection:'row',
// 主轴的对齐方式
justifyContent:'space-between',
// 背景颜色
backgroundColor:'white',
// 垂直居中
alignItems:'center',
// 高度
height:Platform.OS == 'ios' ? 40 : 55,
// 下边框
borderBottomColor:'#e8e8e8',
borderBottomWidth:0.5
},
leftViewStyle:{
// 主轴的方向
flexDirection:'row',
// 侧轴居中
alignItems:'center',
// 左外边距
marginLeft:8
},
rightViewStyle:{
},
leftImgStyle:{ // 左边的图片
width:24,
height:24,
marginRight:6,
// 圆角
borderRadius:12
},
leftTitleStyle:{
fontSize:16
}
});