Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions components/Navigation/LogInScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ const LogInScreen = ({navigation, onPress}) => {
</View>


<View style={styles.loginButton}>
<View>
<TouchableOpacity onPress={signInUser}>
<View style={styles.buttonContainer}>
<View style={styles.loginButton}>
<Text style={{color: Colors.white, fontSize: 20, fontWeight: 'bold'}}>Log In</Text>
</View>
</TouchableOpacity>
Expand Down Expand Up @@ -183,4 +183,4 @@ const styles = StyleSheet.create({
},
})

export default LogInScreen;
export default LogInScreen;
9 changes: 4 additions & 5 deletions components/screens/ProfileScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,12 @@ const ProfileScreen =({navigation}) =>{
color: Colors.grey}}>Log in to start booking your hotel.
</Text>
</View>
<View style={styles.loginButton}>
<View>
<TouchableOpacity onPress={() => navigation.navigate('LogIn')}>
<View style={styles.buttonContainer}>
<View style={styles.loginButton}>
<Text style={{color: Colors.white, fontSize: 20, fontWeight: 'bold'}}>Log In</Text>
</View>
</TouchableOpacity>

</TouchableOpacity>
</View>
<View style={{flexDirection:'row'}} >
<Text style={{
Expand Down Expand Up @@ -118,4 +117,4 @@ const styles = StyleSheet.create({

})

export default ProfileScreen;
export default ProfileScreen;