-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtarefas.js
81 lines (79 loc) · 2.04 KB
/
tarefas.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
import React from 'react';
import{
StyleSheet,
Text,
View,
TouchableOpacity
} from 'react-native';
class Tarefas extends React.Component {
render(){
return(
<View key = {this.props.keyval} style={styles.note}>
<Text style={styles.tarText}>{this.props.val.date}</Text>
<Text style={styles.tarText}>{this.props.val.note}</Text>
<View style={styles.Prioridade1} />
<TouchableOpacity onPress ={this.props.deleteMethod} style = {styles.noteDelete}>
<Text style={styles.noteDeleteText}>del</Text>
</TouchableOpacity>
</View>
)
}
}
const styles = StyleSheet.create({
note: {
position: 'relative',
padding: 20,
paddingRight:100,
borderBottomWidth: 2,
borderBottomColor: '#ededed',
},
noteText: {
paddingLeft: 20,
borderLeftWidth: 10,
borderLeftColor: '#e91e63',
},
noteDelete: {
position: 'absolute',
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#2980b9',
padding: 10,
top: 10,
bottom: 10,
right: 10
},
noteDeleteText: {
color: 'white',
},
container: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
backgroundColor: 'white'
},
Prioridade1: {
backgroundColor: '#ec3c1a',
flexDirection: 'row',
height: 20,
aspectRatio: 1,
left: 250,
bottom: 20
},
Prioridade2: {
backgroundColor: '#ec3c1a',
flexDirection: 'row',
height: 20,
aspectRatio: 1,
left: 250,
bottom: 20
},
Prioridade3: {
backgroundColor: '#ec3c1a',
flexDirection: 'row',
height: 20,
aspectRatio: 1,
left: 250,
bottom: 20
},
});
export default Tarefas;