44 lines
856 B
TypeScript
44 lines
856 B
TypeScript
import { useState } from 'react';
|
|
import { ScrollView, StyleSheet, TextInput, View } from 'react-native';
|
|
|
|
export default function SelectChantier() {
|
|
|
|
const [search, setSearch] = useState('');
|
|
|
|
|
|
return (
|
|
<ScrollView>
|
|
<View style={styles.searchZone}>
|
|
<TextInput
|
|
placeholder='Rechercher un chantier'
|
|
value={search}
|
|
onChangeText={setSearch}
|
|
/>
|
|
</View>
|
|
|
|
<View>
|
|
|
|
</View>
|
|
</ScrollView>
|
|
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
titleContainer: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
gap: 8,
|
|
},
|
|
searchZone:{
|
|
position: 'absolute',
|
|
backgroundColor: "#FF0000",
|
|
width: "100%",
|
|
margin: 0,
|
|
padding:20,
|
|
alignItems: 'center',
|
|
|
|
|
|
}
|
|
});
|