Browse Source

add solicitar view

José C.S. Curet 1 year ago
parent
commit
6d32a1c21c
1 changed files with 8 additions and 3 deletions
  1. 8
    3
      screens/solicitar.js

+ 8
- 3
screens/solicitar.js View File

1
 import * as React from 'react';
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
 import Header from '../shared/header';
3
 import Header from '../shared/header';
4
 
4
 
5
-export default function Solicitar({navigation}) {
5
+export default function Solicitar({ navigation }) {
6
     return (
6
     return (
7
         <View style={styles.container}>
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
         </View>
14
         </View>
10
     )
15
     )
11
 }
16
 }