import ChantierSummary from '@/components/chantierSummary'; import SelectChantier from '@/components/selectChantier'; import SetStatus from '@/components/setStatus'; import { ThemedView, } from '@/components/theme/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,Text, ScrollView } from 'react-native'; import { useChantier } from '../ContextChantier'; import Anomaly from '@/components/anomaly'; import { useUser } from '../ContextUser'; export default function Home() { const { chantier, setChantier } = useChantier(); const { role } = useUser(); return( {chantier&& } {role === "chef"} ) } const styles = StyleSheet.create({ back:{ height:"100%", width:"100%", }, container: { flex: 1, marginTop: Constants.statusBarHeight, //pour la barre menu du haut }, header: { flex: 1, width:"100%" }, summary:{ padding:10, }, anomaly:{ padding:10, } });