import { View, StyleSheet, FlatList } from 'react-native'; import { useTheme, Card, Text, Button} from 'react-native-paper'; import { Link } from 'expo-router'; import { Locations } from '@/constants/Locations'; export default function Index() { const theme = useTheme(); return ( item.name} renderItem={({ item }) => ( {item.name} {item.description} )}> ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#25292e', justifyContent: 'center', alignItems: 'center', }, text: { color: '#fff', }, });