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

Loading…
Cancel
Save