|
@@ -3,24 +3,146 @@ import {
|
3
|
3
|
View,
|
4
|
4
|
Text,
|
5
|
5
|
StyleSheet,
|
6
|
|
- TouchableOpacity,
|
7
|
|
- TextInput,
|
8
|
6
|
} from "react-native";
|
9
|
7
|
|
|
8
|
+// TOOL DESCRIPTIONS
|
|
9
|
+const bodyEJScreen = "EJScreen es..... Presione para ir al enlace."
|
|
10
|
+const bodyCEJST = "CEJST es..... Presione para ir al enlace."
|
|
11
|
+const bodyEJAtlas = "EJAtlas es..... Presione para ir al enlace."
|
|
12
|
+const bodyIPCC = "El ''Intergovernmental Panel on Climate Change'' o IPCC es..... Presione para ir al enlace."
|
|
13
|
+
|
10
|
14
|
const Analisis = () => {
|
11
|
15
|
return (
|
12
|
|
- <View>
|
13
|
|
- <Text
|
14
|
|
- style={{
|
15
|
|
- fontSize: 30,
|
16
|
|
- textAlign: "center",
|
17
|
|
- marginTop: "20%",
|
18
|
|
- }}
|
19
|
|
- >
|
20
|
|
- Herramientas de analisis
|
21
|
|
- </Text>
|
22
|
|
- </View>
|
23
|
|
- );
|
24
|
|
-};
|
|
16
|
+ <View>
|
|
17
|
+
|
|
18
|
+ {/* TAB TITLE CODE*/}
|
|
19
|
+ {/* TAB TITLE */}
|
|
20
|
+ <Text style={styles.Tab}>
|
|
21
|
+ Enlaces a Herramientas de Análisis Externas
|
|
22
|
+ </Text>
|
|
23
|
+
|
|
24
|
+ {/* FIRST TOOL CODE*/}
|
|
25
|
+ {/* FIRST TOOL TITLE */}
|
|
26
|
+ <View style={styles.Number}>
|
|
27
|
+ <Text style={styles.Number}>
|
|
28
|
+ 1)
|
|
29
|
+ </Text>
|
|
30
|
+ <Text style={styles.Title}
|
|
31
|
+ onPress={ ()=> Linking.openURL('https://ejscreen.epa.gov/mapper/') }>
|
|
32
|
+ Enlace a EJScreen
|
|
33
|
+ </Text>
|
|
34
|
+ </View>
|
|
35
|
+ {/* FIRST TOOL BODY */}
|
|
36
|
+ <View style={styles.Bullet}>
|
|
37
|
+ <Text style={styles.Bullet}>
|
|
38
|
+ {'\u002D'}
|
|
39
|
+ </Text>
|
|
40
|
+ <Text style={styles.Body}>
|
|
41
|
+ {bodyEJScreen}
|
|
42
|
+ </Text>
|
|
43
|
+ </View>
|
|
44
|
+
|
|
45
|
+ {/* SECOND TOOL CODE*/}
|
|
46
|
+ {/* SECOND TOOL TITLE */}
|
|
47
|
+ <View style={styles.Number}>
|
|
48
|
+ <Text style={styles.Number}>
|
|
49
|
+ 2)</Text>
|
|
50
|
+ <Text style={styles.Title}
|
|
51
|
+ onPress={ ()=> Linking.openURL('https://screeningtool.geoplatform.gov/en/#3/33.47/-97.5') }>
|
|
52
|
+ Enlace a CEJST
|
|
53
|
+ </Text>
|
|
54
|
+ </View>
|
|
55
|
+ {/* SECOND TOOL BODY */}
|
|
56
|
+ <View style={styles.Bullet}>
|
|
57
|
+ <Text style={styles.Bullet}>
|
|
58
|
+ {'\u002D'}
|
|
59
|
+ </Text>
|
|
60
|
+ <Text style={styles.Body}>
|
|
61
|
+ {bodyCEJST}
|
|
62
|
+ </Text>
|
|
63
|
+ </View>
|
|
64
|
+
|
|
65
|
+ {/* THIRD TOOL CODE*/}
|
|
66
|
+ {/* THIRD TOOL TITLE */}
|
|
67
|
+ <View style={styles.Number}>
|
|
68
|
+ <Text style={styles.Number}>
|
|
69
|
+ 3)
|
|
70
|
+ </Text>
|
|
71
|
+ <Text style={styles.Title}
|
|
72
|
+ onPress={ ()=> Linking.openURL('https://ejatlas.org/') }>
|
|
73
|
+ Enlace a EJAtlas
|
|
74
|
+ </Text>
|
|
75
|
+ </View>
|
|
76
|
+ {/* THIRD TOOL BODY */}
|
|
77
|
+ <View style={styles.Bullet}>
|
|
78
|
+ <Text style={styles.Bullet}>
|
|
79
|
+ {'\u002D'}
|
|
80
|
+ </Text>
|
|
81
|
+ <Text style={styles.Body}>
|
|
82
|
+ {bodyEJAtlas}
|
|
83
|
+ </Text>
|
|
84
|
+ </View>
|
|
85
|
+
|
|
86
|
+ {/* FOURTH TOOL CODE*/}
|
|
87
|
+ {/* FOURTH TOOL TITLE */}
|
|
88
|
+ <View style={styles.Number}>
|
|
89
|
+ <Text style={styles.Number}>
|
|
90
|
+ 4)
|
|
91
|
+ </Text>
|
|
92
|
+ <Text style={styles.Title}
|
|
93
|
+ onPress={ ()=> Linking.openURL('https://www.ipcc.ch/') }>
|
|
94
|
+ Enlace al IPCC
|
|
95
|
+ </Text>
|
|
96
|
+ </View>
|
|
97
|
+ {/* FOURTH TOOL BODY */}
|
|
98
|
+ <View style={styles.Bullet}>
|
|
99
|
+ <Text style={styles.Bullet}>
|
|
100
|
+ {'\u002D'}
|
|
101
|
+ </Text>
|
|
102
|
+ <Text style={styles.Body}>
|
|
103
|
+ {bodyIPCC}
|
|
104
|
+ </Text>
|
|
105
|
+ </View>
|
|
106
|
+
|
|
107
|
+ </View>
|
|
108
|
+)}
|
|
109
|
+
|
|
110
|
+const styles = StyleSheet.create({
|
|
111
|
+ Tab: { fontSize: 30,
|
|
112
|
+ textAlign: "center",
|
|
113
|
+ marginTop: "12%",
|
|
114
|
+ marginLeft: "1.4%",
|
|
115
|
+ marginRight: "1.4%"
|
|
116
|
+ },
|
|
117
|
+
|
|
118
|
+ Number: { fontSize: 23,
|
|
119
|
+ textAlign: "left",
|
|
120
|
+ marginLeft: "2.5%",
|
|
121
|
+ marginTop: "5.5%",
|
|
122
|
+ flexDirection: 'row'
|
|
123
|
+ },
|
|
124
|
+
|
|
125
|
+ Title: { fontSize: 23,
|
|
126
|
+ textAlign: "left",
|
|
127
|
+ marginTop: "5.5%",
|
|
128
|
+ color: "#6495ed",
|
|
129
|
+ flex: 0,
|
|
130
|
+ paddingLeft: 6
|
|
131
|
+ },
|
|
132
|
+
|
|
133
|
+ Body: { fontSize: 18,
|
|
134
|
+ textAlign: "left",
|
|
135
|
+ marginTop: "2%",
|
|
136
|
+ flex: 1,
|
|
137
|
+ paddingLeft: 5
|
|
138
|
+ },
|
|
139
|
+
|
|
140
|
+ Bullet: { fontSize: 18,
|
|
141
|
+ textAlign: "left",
|
|
142
|
+ marginLeft: "6%",
|
|
143
|
+ marginTop: "2%",
|
|
144
|
+ flexDirection: 'row'
|
|
145
|
+ }
|
|
146
|
+});
|
25
|
147
|
|
26
|
148
|
export default Analisis;
|