|
@@ -1,11 +1,16 @@
|
1
|
1
|
import * as React from 'react';
|
2
|
|
-import { StyleSheet, View, Text } from 'react-native';
|
|
2
|
+import { Button, StyleSheet, View, Text, Linking } from 'react-native';
|
3
|
3
|
import Header from '../shared/header';
|
4
|
4
|
|
5
|
|
-export default function Solicitar({navigation}) {
|
|
5
|
+export default function Solicitar({ navigation }) {
|
6
|
6
|
return (
|
7
|
7
|
<View style={styles.container}>
|
8
|
|
- <Text>Solicitar Screen</Text>
|
|
8
|
+ <Text>Solicitar Screen</Text>
|
|
9
|
+ <Button
|
|
10
|
+ onPress={() => { Linking.openURL("https://forms.gle/SciwvAdF3TAE6hE97") }}
|
|
11
|
+ title="Solicita Ayuda"
|
|
12
|
+ accessibilityLable="Solicitar presionando el botón"
|
|
13
|
+ />
|
9
|
14
|
</View>
|
10
|
15
|
)
|
11
|
16
|
}
|