// @flow import * as React from 'react'; import {Avatar, List, Text, withTheme} from 'react-native-paper'; import i18n from 'i18n-js'; import type {ProximoArticleType} from '../../../screens/Services/Proximo/ProximoMainScreen'; type PropsType = { onPress: () => void, color: string, item: ProximoArticleType, height: number, }; class ProximoListItem extends React.Component { shouldComponentUpdate(): boolean { return false; } render(): React.Node { const {props} = this; return ( ( )} right={(): React.Node => ( {props.item.price}€ )} style={{ height: props.height, justifyContent: 'center', }} /> ); } } export default withTheme(ProximoListItem);