import { StyleSheet, Text, View, Button, TouchableNativeFeedback } from 'react-native'; import { useNavigation } from '@react-navigation/native'; import { NavigationContainer } from '@react-navigation/native'; import StackNavigation from '../navigation/StackNavigation' import { Colors } from 'react-native/Libraries/NewAppScreen'; export default function HomeScreen() { return ( // // navigation.navigate("ListScreen")}> //Click me ! // Mes super Nounours ! Mon super texte ... {/* */} Nous sommes actuellement dans l'écran d'accueil ! // ) }; const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: "darksalmon", alignItems: "center" }, centered: { alignItems: "center" }, title: { fontSize: 20 }, MidArea: { justifyContent: "center", backgroundColor: "white", paddingTop: 50, paddingBottom: 50, margin: 40, }, textStyle: { textAlign: "center", fontSize: 20, } });