Browse Source

Changing error messagens in forms screens

master
GabrielTrettel 4 years ago
parent
commit
863f93431a
  1. 4
      src/app/screens/RainSharingDataScreen.js
  2. 2
      src/app/screens/RiverFloodSharingDataScreen.js
  3. 2
      src/app/screens/SharingFloodZonesScreen.js

4
src/app/screens/RainSharingDataScreen.js

@ -145,9 +145,7 @@ function RainSharingDataScreen(props) {
</View>
{error && rain == -1 && (
<Text style={styles.error_txt}>
Selecione se está passável ou não
</Text>
<Text style={styles.error_txt}>Selecione o nível da chuva </Text>
)}
<FormImagePicker backgroundColor={colors.primary} name="images" />

2
src/app/screens/RiverFloodSharingDataScreen.js

@ -122,7 +122,7 @@ function RiverFloodSharingDataScreen(props) {
</View>
{error && riverScale == -1 && (
<Text style={styles.error_txt}>Selecione ao menos uma opção</Text>
<Text style={styles.error_txt}>Selecione o nível do rio</Text>
)}
<FormImagePicker backgroundColor={colors.primary} name="images" />

2
src/app/screens/SharingFloodZonesScreen.js

@ -96,7 +96,7 @@ function SharingFloodZonesScreen(props) {
</View>
{error && passable == -1 && (
<Text style={styles.error_txt}>Selecione ao menos uma opção</Text>
<Text style={styles.error_txt}>Selecione uma opção</Text>
)}
<FormImagePicker name="images" height={10} />

Loading…
Cancel
Save