This commit is contained in:
Rochas
2025-11-02 20:20:56 +01:00
parent 879139c9b0
commit d09e8914e0
6 changed files with 108 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
import { Image } from 'expo-image';
import { Platform, StyleSheet } from 'react-native';
import { Platform, StyleSheet, View } from 'react-native';
import { ExternalLink } from '@/components/external-link';
import ParallaxScrollView from '@/components/parallax-scroll-view';
@@ -8,7 +8,8 @@ import { ThemedView } from '@/components/themed-view';
import { Collapsible } from '@/components/ui/collapsible';
import { IconSymbol } from '@/components/ui/icon-symbol';
import { Fonts } from '@/constants/theme';
import SelectChantier from './selectChantier';
import SelectChantier from '@/components/selectChantier';
export default function TabTwoScreen() {
return (
@@ -21,8 +22,10 @@ export default function TabTwoScreen() {
name="chevron.left.forwardslash.chevron.right"
style={styles.headerImage}
/>
}>
<SelectChantier></SelectChantier>
}>
<ThemedView style={styles.selectChantier}>
<SelectChantier ></SelectChantier>
</ThemedView>
<ThemedView style={styles.titleContainer}>
<ThemedText
@@ -112,4 +115,8 @@ const styles = StyleSheet.create({
flexDirection: 'row',
gap: 8,
},
selectChantier:{
width:"100%",
margin:0
},
});