This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { View, Text, StyleSheet, ScrollView, TouchableOpacity, Image } from 'react-native'; | |
import { Ionicons } from '@expo/vector-icons'; | |
import { useRouter } from 'expo-router'; | |
export default function SupportScreen() { | |
const router = useRouter(); | |
return ( | |
<ScrollView style={styles.container}> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState, useEffect, useContext } from 'react'; | |
import { | |
View, | |
Text, | |
StyleSheet, | |
TouchableOpacity, | |
ScrollView, | |
Alert, | |
Modal, | |
ActivityIndicator, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState, useEffect, useContext } from 'react'; | |
import { | |
View, | |
Text, | |
StyleSheet, | |
TouchableOpacity, | |
ScrollView, | |
Alert, | |
Dimensions, | |
Linking |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// app/index.js | |
import React, { useState, useContext } from 'react'; | |
import { | |
View, | |
Text, | |
TextInput, | |
TouchableOpacity, | |
StyleSheet, | |
ScrollView, | |
ActivityIndicator |