clean gestionnaire_ressource et ouvrier, ajout de select Chantier + templateScreen
This commit is contained in:
31
app/(tabs)/templateSreen.tsx
Normal file
31
app/(tabs)/templateSreen.tsx
Normal file
@@ -0,0 +1,31 @@
|
||||
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";
|
||||
|
||||
import { useChantier } from "../ContextChantier";
|
||||
|
||||
|
||||
export default function TemplateScreen() {
|
||||
const { chantier, setChantier } = useChantier();
|
||||
|
||||
|
||||
return (
|
||||
<ThemedView lvl={3} style={styles.back}>
|
||||
<View style={styles.container}>
|
||||
|
||||
</View>
|
||||
</ThemedView>
|
||||
);
|
||||
}
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
back:{
|
||||
height:"100%",
|
||||
width:"100%",
|
||||
},
|
||||
container: {
|
||||
flex: 1,
|
||||
marginTop: Constants.statusBarHeight, //pour la barre menu du haut
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user