-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fun.js
82 lines (72 loc) · 2.36 KB
/
Fun.js
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
import React from "react";
import { View, Text, TextInput,StyleSheet, Image,TouchableOpacity} from "react-native";
export default function Fun({route}) {
return (
<View style={styles.geral}>
<View style={styles.header}>
<Image style={styles.img} source={require('./src/fimg.png')}/>
<Text >Esse funcionario é: </Text>
<Text style={styles.h1}>{route.params.useri}</Text>
<Text style={styles.h2}>Oque deseja falar sobre esse funcionário?</Text>
</View>
<View style={styles.body}>
<Text style={styles.txt}>O que essa pessoa pode fazer para melhorar seu trabalho e suas relações na empresa?</Text>
<TextInput style ={styles.btn} placeholder="Digite aqui" keyboardType="default"/>
<Text style={styles.txt}>Quais os problemas que vem tendo para uma suposta melhora?</Text>
<TextInput style ={styles.btn} placeholder="Digite aqui" keyboardType="default"/>
<Text style={styles.txt}>Qual a nota você daria para este funcionario?</Text>
<TextInput style ={styles.btn} placeholder="Digite aqui" keyboardType="number-pad"/>
</View>
<TouchableOpacity style={styles.av}><Text>Avaliar</Text></TouchableOpacity>
</View>
);
}
const styles = StyleSheet.create({
geral:{
flex: 1,
alignItems: 'center',
backgroundColor: '#fff',
justifyContent: 'center'
},
h1:{
fontSize: 15,
marginBottom: 20
},
h2:{
fontSize: 12
},
header: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
marginTop: 40
},
body: {
flex: 2,
marginTop: 30,
alignItems:'center',
justifyContent:'flex-start'
},
img:{
marginTop: 20,
height: 160,
width: 160
},
txt:{
margin: 20
},
btn:{
borderRadius: 20,
padding: 10,
width: 300,
marginTop: 0,
height: 50,
backgroundColor: '#EEEEEE',
},
av:{
height: 30,
width: 70,
marginBottom: 50,
marginLeft: 35
}
});