From d08bb6da70df3f92a0c8b42cb9f84d703a1b147e Mon Sep 17 00:00:00 2001 From: trochas Date: Fri, 10 Oct 2025 10:04:00 +0200 Subject: [PATCH] composant selectChantier (pas fini) --- app/(tabs)/login.tsx | 0 app/_layout.tsx | 1 + app/selectChantier.tsx | 43 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 44 insertions(+) delete mode 100644 app/(tabs)/login.tsx create mode 100644 app/selectChantier.tsx diff --git a/app/(tabs)/login.tsx b/app/(tabs)/login.tsx deleted file mode 100644 index e69de29..0000000 diff --git a/app/_layout.tsx b/app/_layout.tsx index f518c9b..fd2f486 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -15,6 +15,7 @@ export default function RootLayout() { return ( + diff --git a/app/selectChantier.tsx b/app/selectChantier.tsx new file mode 100644 index 0000000..5cdce56 --- /dev/null +++ b/app/selectChantier.tsx @@ -0,0 +1,43 @@ +import { useState } from 'react'; +import { ScrollView, StyleSheet, TextInput, View } from 'react-native'; + +export default function SelectChantier() { + + const [search, setSearch] = useState(''); + + + return ( + + + + + + + + + + + ); +} + +const styles = StyleSheet.create({ + titleContainer: { + flexDirection: 'row', + alignItems: 'center', + gap: 8, + }, + searchZone:{ + position: 'absolute', + backgroundColor: "#FF0000", + width: "100%", + margin: 0, + padding:20, + alignItems: 'center', + + + } +});