bonjour -> ouvriers

This commit is contained in:
trochas
2025-12-11 16:32:53 +01:00
parent 89c50827f8
commit 2be434e2cf
10 changed files with 90 additions and 81 deletions

View File

@@ -0,0 +1,27 @@
import { ThemedText } from '@/components/themed-text';
import { ThemedView, } from '@/components/themed-view';
import Constants from 'expo-constants'; //pour connaître la taille de la barre menu de l'OS en haut
import React from 'react';
import { StyleSheet, View } from 'react-native';
export default function AddChantier() {
return(
<ThemedView lvl={3} style={styles.back}>
<View style={styles.container}>
<ThemedText>TODO</ThemedText>
</View>
</ThemedView>
)
}
const styles = StyleSheet.create({
back:{
height:"100%",
width:"100%",
},
container: {
flex: 1,
marginTop: Constants.statusBarHeight, //pour la barre menu du haut
},
});