Style
continuous-integration/drone/push Build was killed Details

peristanceBDD
Alban GUILHOT 1 year ago
parent d956c21cf8
commit 079a840a82

@ -8,7 +8,7 @@ export default StyleSheet.create({
flex:1,
backgroundColor:"#45444E",
alignItems:"center",
justifyContent:"center"
justifyContent:"center",
},
grid:{
width:375,

@ -44,7 +44,7 @@ function topBarTopDistance(){
const engrenage = require('../../assets/Icons/UnSelected/Cogs.png');
const cross = require('../../assets/Icons/UnSelected/Cross.png');
const msc = require('../../assets/Icons/FondGris.png');
const door = require('../../assets/Icons/UnSelected/Door.png');
const door = require('../../assets/Icons/UnSelected/LeaveConv.png');
export const TopBar :
/* Parameters:

@ -40,7 +40,6 @@ function Profile(props: { navigation: any; }) {
</View>
<View style={styles.infoView}>
<Text style={styles.infoText}>Total de BobCoin gagnés: {useUserStore().user?.getTotalCoins()}</Text>
<Text style={styles.infoText}>Total de BobCoin gagnés: </Text>
</View>
</View>
<BotBar

@ -104,7 +104,7 @@ function SignUp(props: { navigation: any; }) {
break;
case (errorList.invalidPassword):
Alert.alert("Votre Password doit contenir au moins une majuscule, une majuscule, un chiffre et un caractère spécial (#?!@$%^&*-)");
Alert.alert("Votre mot de passe doit contenir au moins une minuscule, une majuscule, un chiffre et un caractère spécial (#?!@$%^&*-)");
dispatch(updateInvalidPassword(false));
break;
@ -165,7 +165,7 @@ function SignUp(props: { navigation: any; }) {
<PickerGreySmall title='Choisir le sexe' valueChange={(value:string) => setSelectedSex(value)} values={[ { label: 'Homme', value: 'Homme' }, { label: 'Femme', value: 'Femme' }, {label: 'Autre', value: 'Autre' } ]} />
</View>
<Pressable style={styles.button} onPress={() => createAccount(pseudo,password,date,selectedNationality,selectedSex, dispatch, navigation)}>
<Text style={styles.text}>S'inscrire</Text>
<Text style={styles.buttonText}>S'inscrire</Text>
</Pressable>
<Pressable onPress={() => navigation.navigate('SignIn')}>
<Text style={styles.textLink}>J'ai déjà un compte</Text>

@ -25,6 +25,15 @@ export default StyleSheet.create({
fontWeight: 'bold',
letterSpacing: 0.25,
color: 'white',
marginTop: 20,
},
buttonText: {
fontSize: 16,
lineHeight: 21,
fontWeight: 'bold',
letterSpacing: 0.25,
color: 'white',
marginVertical: 10,
},
textLink:{
fontSize:15,

Loading…
Cancel
Save