12345678910111213141516171819 |
- import { propertiesListToString } from "@expo/config-plugins/build/android/Properties";
- import React, { useEffect, useState }from "react";
- import { StyleSheet, View, Text, Button } from 'react-native';
- import { globalStyles } from "../styles/global";
-
- export default App = ({ navigation }) => {
-
- const pressHandler = () => {
- navigation.navigate('Pinpage');
- }
-
-
- return (
- <View style = {globalStyles.container}>
- <Text style = {globalStyles.tittleText}>Home Screen</Text>
- <Button title="go to pin page" onPress={pressHandler}/>
- </View>
- )
- }
|