diff --git a/app/(tabs)/bonjourFL.tsx b/app/(tabs)/bonjourFL.tsx index f794ef6..72dff76 100644 --- a/app/(tabs)/bonjourFL.tsx +++ b/app/(tabs)/bonjourFL.tsx @@ -1,6 +1,10 @@ +import SelectChantier from '@/components/selectChantier'; +import { ThemedText } from '@/components/themed-text'; +import { ThemedTextInput } from '@/components/themed-textinpute'; +import { ThemedView } from '@/components/themed-view'; import { useLocalSearchParams, useRouter } from 'expo-router'; import React, { useMemo, useState } from 'react'; -import { Button, FlatList, Image, StyleSheet, Text, TextInput, View } from 'react-native'; +import { Button, FlatList, Image, StyleSheet, Text } from 'react-native'; import rawConcerts from '../../data/concerts.json'; type Concert = { @@ -40,55 +44,61 @@ export default function BonjourScreen() { return null; } return( - + - - {item.group} - {item.date} - {item.location} - Prix : {item.price} € - Places restantes : {item.ticketsLeft} - - ); + + {item.group} + {item.date} + {item.location} + Prix : {item.price} € + Places restantes : {item.ticketsLeft} + + ); }; + + + return( - + + + + index.toString()} contentContainerStyle={{ paddingBottom: 40 }} ListHeaderComponent={ - - + + Bonjour {prenom} {nom} - + - - + } ListEmptyComponent={ Aucun résultat n'a été trouvé } /> - +