import * as React from 'react'; import {Avatar, Button, Card, withTheme} from 'react-native-paper'; import {TouchableOpacity, View} from "react-native"; import Autolink from "react-native-autolink"; import i18n from "i18n-js"; const ICON_AMICALE = require('../assets/amicale.png'); function getAvatar() { return ( ); } function FeedItem(props) { const {colors} = props.theme; return ( {props.full_picture !== '' && props.full_picture !== undefined ? : } {props.message !== undefined ? : } ); } export default withTheme(FeedItem);