Skip to content

Commit

Permalink
fix(export): wording export
Browse files Browse the repository at this point in the history
  • Loading branch information
tangimds committed Dec 22, 2021
1 parent 2449475 commit c275bc7
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions src/scenes/export/export.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,27 +115,29 @@ const Export = ({navigation}) => {
</Text>

<View style={styles.inputContainer}>
<Text style={styles.label}>À qui je souhaite l'envoyer ?</Text>
<Text style={styles.label}>
Je souhaite envoyer mes données à :
</Text>
<TextInput
autoCapitalize="none"
keyboardType="email-address"
textContentType="emailAddress"
onChangeText={handleChangeMail}
value={mail}
placeholder="exemple@email.com"
placeholder="destinataire@mail.com"
style={styles.inputMail}
/>
</View>
<View style={styles.inputContainer}>
<Text style={styles.label}>
Si je le souhaite, je peux donner un nom à mon bilan pour mieux
l'identifier
<Text style={styles.italic}>Optionnel</Text> : je peux donner un
nom à mon bilan pour mieux l'identifier
</Text>
<TextInput
autoCapitalize="none"
onChangeText={handleChangePseudo}
value={pseudo}
placeholder="Ex: Arthur, décembre, ..."
placeholder="Ex: Arthur M. décembre 2020, ..."
style={styles.inputMail}
/>
</View>
Expand Down Expand Up @@ -199,13 +201,17 @@ const styles = StyleSheet.create({
label: {
marginBottom: 5,
color: colors.BLUE,
textAlign: 'center',
},
inputContainer: {
paddingHorizontal: 30,
display: 'flex',
alignSelf: 'stretch',
marginVertical: 30,
},
italic: {
fontStyle: 'italic',
},
});

export default Export;

0 comments on commit c275bc7

Please sign in to comment.