UI settings finish
continuous-integration/drone/push Build is passing Details

pull/9/head
Emre KARTAL 2 years ago
parent 3959b02632
commit 367cba1b6b

Binary file not shown.

After

Width:  |  Height:  |  Size: 715 KiB

@ -81,7 +81,7 @@ export default function Onboarding() {
<TouchableOpacity style={styles.buttonInscription} onPress={() => {handleModal(); navigation.navigate('Register');}}> <TouchableOpacity style={styles.buttonInscription} onPress={() => {handleModal(); navigation.navigate('Register');}}>
<Text style={styles.text}>SINSCRIRE MAINTENANT</Text> <Text style={styles.text}>SINSCRIRE MAINTENANT</Text>
</TouchableOpacity> </TouchableOpacity>
<Image source={require("../assets/images/FladyShadow.png")} style={styles.mascot}/> <Image source={require("../assets/images/Flady.gif")} style={styles.mascot}/>
<TouchableOpacity style={styles.button2Connection} onPress={() => {handleModal(); navigation.navigate('Login');}}> <TouchableOpacity style={styles.button2Connection} onPress={() => {handleModal(); navigation.navigate('Login');}}>
<Text style={styles.text}>SE CONNECTER</Text> <Text style={styles.text}>SE CONNECTER</Text>
</TouchableOpacity> </TouchableOpacity>
@ -191,8 +191,8 @@ const styles = StyleSheet.create({
bottom: normalize(46) bottom: normalize(46)
}, },
mascot: { mascot: {
width: normalize(150), width: normalize(130),
height: normalize(150), height: normalize(130),
position: 'absolute', position: 'absolute',
bottom: normalize(140), bottom: normalize(140),
right: normalize(0) right: normalize(0)

@ -122,17 +122,17 @@ export default function SettingProfil() {
</TouchableOpacity> </TouchableOpacity>
</View> </View>
<View style={styles.bodyModal}> <View style={styles.bodyModal}>
<View> <View style={styles.optionModalWithUnderline}>
<Text style={styles.textOption}>Ancien</Text> <Text style={styles.textOptionModal}>Ancien</Text>
<TextInput placeholderTextColor='#828288' placeholder="saisir l'ancien mot de passe"/> <TextInput placeholderTextColor='#828288' placeholder="saisir l'ancien mot de passe" style={styles.textInputOldModal}/>
</View> </View>
<View> <View style={styles.optionModalWithUnderline}>
<Text style={styles.textOption}>Nouveau</Text> <Text style={styles.textOptionModal}>Nouveau</Text>
<TextInput placeholderTextColor='#828288' placeholder='saisir le mot de passe' style={styles.textInputMail}/> <TextInput placeholderTextColor='#828288' placeholder='saisir le mot de passe' style={styles.textInputNewModal}/>
</View> </View>
<View> <View style={styles.optionModal}>
<Text style={styles.textOption}>Confirmer</Text> <Text style={styles.textOptionModal}>Confirmer</Text>
<TextInput placeholderTextColor='#828288' placeholder='mot de passe'/> <TextInput placeholderTextColor='#828288' placeholder='mot de passe' style={styles.textInputConfirmModal}/>
</View> </View>
</View> </View>
<View style={styles.warningView}> <View style={styles.warningView}>
@ -314,10 +314,42 @@ const styles = StyleSheet.create({
}, },
bodyModal: { bodyModal: {
paddingVertical: 12, paddingVertical: 12,
paddingHorizontal: 10, paddingLeft: 30,
marginHorizontal: normalize(25), marginHorizontal: normalize(25),
backgroundColor: "#232123", backgroundColor: "#232123",
borderRadius: 13, borderRadius: 13,
alignItems: 'flex-start' alignItems: 'flex-start'
},
optionModalWithUnderline: {
flexDirection: 'row',
borderBottomWidth: 1,
borderColor: '#403F3F',
paddingBottom: 10,
marginBottom: 10
},
optionModal: {
flexDirection: 'row'
},
textOptionModal: {
fontSize: normalize(18),
color: 'white',
fontWeight: 'bold',
},
textInputNewModal: {
marginLeft: 40,
color: 'white',
width: '67.5%',
fontSize: normalize(18)
},
textInputConfirmModal: {
marginLeft: 30,
color: 'white',
fontSize: normalize(18)
},
textInputOldModal: {
marginLeft: 55,
color: 'white',
width: '67.5%',
fontSize: normalize(18)
} }
}) })
Loading…
Cancel
Save