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', + + + } +});