123456789101112131415161718192021 |
- import { propertiesListToString } from "@expo/config-plugins/build/android/Properties";
- import React from "react";
- import { StyleSheet, View, Text, Button } from 'react-native';
- import { globalStyles } from "../styles/global";
-
- export default function HomeScreen({ navigation }) {
-
- const pressHandler = () => {
- navigation.navigate('Pinpage')
- }
-
- return (
- <View style = {globalStyles.container}>
- <Text style = {globalStyles.tittleText}>Home Screen</Text>
- <Button title='Ir a pagina de pin' onPress={pressHandler} />
- </View>
-
-
-
- )
- }
|