...
|
...
|
@@ -26,7 +26,7 @@ export default class MessageListSmallIconCell extends Component { |
|
|
let imageUri = body ? body.get('img_url','www.yohobuy.com') : 'www.yohobuy.com';
|
|
|
let content = body ? body.get('content','') : '';
|
|
|
imageUri = SlicedImage.getSlicedUrl(imageUri, 50, 50, 2);
|
|
|
|
|
|
|
|
|
return(
|
|
|
<View style={styles.container}>
|
|
|
<TouchableOpacity
|
...
|
...
|
@@ -34,6 +34,9 @@ export default class MessageListSmallIconCell extends Component { |
|
|
onLongPress={() =>{
|
|
|
this.props.onLongPressListItem && this.props.onLongPressListItem(itemData);
|
|
|
}}
|
|
|
onPress={() =>{
|
|
|
this.props.onPressListItem && this.props.onPressListItem(itemData);
|
|
|
}}
|
|
|
>
|
|
|
<View style={styles.contentContainer}>
|
|
|
<Text
|
...
|
...
|
|