diff --git a/src/components/Lists/Proximo/ProximoListItem.tsx b/src/components/Lists/Proximo/ProximoListItem.tsx
index c9a9010..9f2c517 100644
--- a/src/components/Lists/Proximo/ProximoListItem.tsx
+++ b/src/components/Lists/Proximo/ProximoListItem.tsx
@@ -23,6 +23,7 @@ import i18n from 'i18n-js';
import type { ProximoArticleType } from '../../../screens/Services/Proximo/ProximoMainScreen';
import { StyleSheet } from 'react-native';
import Urls from '../../../constants/Urls';
+import GENERAL_STYLES from '../../../constants/Styles';
type PropsType = {
onPress: () => void;
@@ -34,9 +35,13 @@ type PropsType = {
const styles = StyleSheet.create({
avatar: {
backgroundColor: 'transparent',
+ marginRight: 5,
},
text: {
+ marginLeft: 10,
fontWeight: 'bold',
+ fontSize: 15,
+ ...GENERAL_STYLES.centerVertical,
},
item: {
justifyContent: 'center',
@@ -47,6 +52,7 @@ function ProximoListItem(props: PropsType) {
return (
)}
- right={() => {props.item.price}€}
+ right={() => (
+ {props.item.price.toFixed(2)}€
+ )}
style={{
height: props.height,
...styles.item,