Authored by 孙凯

添加资源review by daiqiang

... ... @@ -33,13 +33,13 @@ export default class Tags extends React.Component {
return (
<View style={styles.container}>
<Image style={styles.tagImage}/>
<Image style={styles.tagImage} source={require('../../image/lab_icon.png')}/>
<View style={styles.tagContainer}>
{tags.map((value, i) => {
return (
<Text
key={i}
style={styles.tag}
<Text
key={i}
style={styles.tag}
onPress={()=>{
this.props.onPressTag && this.props.onPressTag(value.url)
}}
... ... @@ -67,11 +67,11 @@ let styles = StyleSheet.create({
paddingBottom: 0,
},
tagImage: {
backgroundColor: 'gray',
backgroundColor: 'transparent',
top: 20,
left: 10,
width: 25,
height: 25,
width: 20,
height: 20,
marginRight: 0,
},
tagContainer: {
... ...