Browse Source

Fixing camera icon size in MapModal

master
GabrielTrettel 3 years ago
parent
commit
fea4d27812
  1. 6
      src/app/components/MapModal.js

6
src/app/components/MapModal.js

@ -103,7 +103,7 @@ function iconInstitutionTextRow(props) {
return (
<View flexDirection="row" alignSelf="flex-start" marginVertical={3}>
<View alignSelf="flex-start" marginRight={10}>
<FontAwesome5 name={props.name} size={25} color={colors.primary} />
<MaterialCommunityIcons name={props.name} size={25} color={colors.primary} />
</View>
<Text style={styles.text}>{props.description}</Text>
@ -117,7 +117,7 @@ function iconImageRow(props) {
<View alignSelf="flex-start" marginRight={10}>
<MaterialCommunityIcons
name={props.name}
size={18}
size={25}
color={colors.primary}
/>
</View>
@ -233,7 +233,7 @@ function componentBody(props) {
{!isOfficialPluviometer(props.name) &&
iconTextRow({ name: "account", description: user })}
{iconInstitutionTextRow({
name: "university",
name: "bank",
description: institution,
})}
{iconTextRow({ name: "map-marker", description: address })}

Loading…
Cancel
Save