Simple Login
import React from 'react';
import { View, TextInput, Button, Text, StyleSheet } from 'react-native';
const Login = () => {
return (
<View style={styles.container}>
<Text style={styles.title}>Login</Text>
<TextInput
style={styles.input}
placeholder="Email"
keyboardType="email-address"
/>
<TextInput
style={styles.input}
placeholder="Password"
secureTextEntry
/>
<Button title="Login" onPress={() => alert('Logged in!')} />
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
paddingHorizontal: 20,
},
title: {
fontSize: 24,
fontWeight: 'bold',
marginBottom: 20,
textAlign: 'center',
},
input: {
height: 50,
borderColor: '#ccc',
borderWidth: 1,
borderRadius: 25,
marginBottom: 15,
paddingLeft: 15,
},
});
export default Login;
See More