-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
85 lines (81 loc) · 1.86 KB
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import React from 'react';
import {View, Text, TextInput, StyleSheet, Pressable, Alert} from 'react-native';
const App = () => {
const [text, onChangeText] = React.useState('');
return (
<View style={styles.container}>
<Text style={styles.title}>CRUD MONGO DB</Text>
<View>
<TextInput
style={styles.input}
onChangeText={onChangeText}
value={text}
placeholder="Ingrese su nombre"
/>
<TextInput
style={styles.input}
onChangeText={onChangeText}
value={text}
placeholder="Ingrese su apellido"
/>
<TextInput
style={styles.input}
onChangeText={onChangeText}
value={text}
placeholder="Ingrese su correo electronico"
/>
<TextInput
style={styles.input}
onChangeText={onChangeText}
value={text}
placeholder="Ingrese su direccion"
/>
</View>
<View style={styles.mt_20}>
<Pressable style={styles.button} onPress={() => Alert.alert('Se registro el usuario')}>
<Text style={styles.titlebtn}>Guardar</Text>
</Pressable>
</View>
</View>
);
};
export default App;
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
title: {
fontSize: 40,
fontWeight: 'bold',
marginBottom: 20,
color: "#191970"
},
input: {
height: 50,
width: 330,
margin: 12,
borderWidth: 1,
borderRadius: 10,
padding: 10,
},
mt_20: {
marginTop: 20
},
button: {
width: 330,
height: 60,
padding: 10,
backgroundColor: "#191970",
borderRadius: 10,
display: "flex",
alignItems: "center",
justifyContent: "center"
},
titlebtn: {
color: "#ffffff",
fontSize: 20,
fontWeight: "bold"
}
});