import React, { Component } from 'react';
import {
StyleSheet,
Text,
View,
TextInput,
TouchableOpacity,
Alert,
Image
} from 'react-native';
export default class LoginView extends Component {
render() {
return (
<View style={styles.container}>
<View style={styles.inputContainer}>
<Image style={[styles.icon, styles.inputIcon]} source={{uri: 'https://png.icons8.com/password/androidL/40/3498db'}}/>
<TextInput style={styles.inputs}
placeholder="Email"
keyboardType="email-address"
underlineColorAndroid='transparent'/>
</View>
<View style={styles.inputContainer}>
<Image style={[styles.icon, styles.inputIcon]} source={{uri: 'https://png.icons8.com/envelope/androidL/40/3498db'}}/>
<TextInput style={styles.inputs}
placeholder="Password"
secureTextEntry={true}
underlineColorAndroid='transparent'/>
</View>
<TouchableOpacity style={styles.restoreButtonContainer}>
<Text>Forgot?</Text>
</TouchableOpacity>
<TouchableOpacity style={[styles.buttonContainer, styles.loginButton]}>
<Text style={styles.loginText}>Login</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.buttonContainer}>
<Text>Register</Text>
</TouchableOpacity>
<TouchableOpacity style={[styles.buttonContainer, styles.fabookButton]}>
<View style={styles.socialButtonContent}>
<Image style={styles.icon} source={{uri: 'https://png.icons8.com/facebook/androidL/40/FFFFFF'}}/>
<Text style={styles.loginText}>Continue with facebook</Text>
</View>
</TouchableOpacity>
<TouchableOpacity style={[styles.buttonContainer, styles.googleButton]}>
<View style={styles.socialButtonContent}>
<Image style={styles.icon} source={{uri: 'https://png.icons8.com/google/androidL/40/FFFFFF'}}/>
<Text style={styles.loginText}>Sign in with google</Text>
</View>
</TouchableOpacity>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#B0E0E6',
},
inputContainer: {
borderBottomColor: '#F5FCFF',
backgroundColor: '#FFFFFF',
borderRadius:30,
borderBottomWidth: 1,
width:250,
height:45,
marginBottom:15,
flexDirection: 'row',
alignItems:'center'
},
inputs:{
height:45,
marginLeft:16,
borderBottomColor: '#FFFFFF',
flex:1,
},
icon:{
width:30,
height:30,
},
inputIcon:{
marginLeft:15,
justifyContent: 'center'
},
buttonContainer: {
height:45,
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
marginBottom:20,
width:250,
borderRadius:30,
},
loginButton: {
backgroundColor: '#3498db',
},
fabookButton: {
backgroundColor: "#3b5998",
},
googleButton: {
backgroundColor: "#ff0000",
},
loginText: {
color: 'white',
},
restoreButtonContainer:{
width:250,
marginBottom:15,
alignItems: 'flex-end'
},
socialButtonContent:{
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
},
socialIcon:{
color: "#FFFFFF",
marginRight:5
}
});
About this react-native snippet
This react-native snippet, Login with social buttons, was published on Nov 8th 2017, 18:03 by Dey Dey and it is free.
We hope you will enjoy this awesome react-native snippet and stay tuned for the latest updates, we believe it will save your precious time and gives trendy look to your next application.
This snippet currectly have 5.6K views, Using this react-native snippet you have the following benefits:
Example Screens
You can jump start your development with our pre-built example, all you need to do is copy the code and execute it, You can also show it to your customers so that they have an idea of the final project.
Cross-platform for mobile development
This snippet was developed for Android and iOS.
Simple Integration
This snippet can be simply integrated on existing projects and new ones too, all you need to do is copy the code and start working.
Fully coded view
this is a functional example, You will save a lot of time going from prototyping to full-functional code.
