Ei kuvausta

HomeScreen.js 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. import { propertiesListToString } from "@expo/config-plugins/build/android/Properties";
  2. import React, { useEffect, useState }from "react";
  3. import { StyleSheet, View, Text, Button } from 'react-native';
  4. import { globalStyles } from "../styles/global";
  5. export default App = ({ navigation }) => {
  6. const [PIN, setPIN] = useState([]); // this is looking for 'PIN' and it's content
  7. // this connects us to the API and fetches the json file with the mociones
  8. const getMociones = async () => {
  9. try {
  10. const response = await fetch('http://10.190.1.140:5000/send?PIN=121071'); // connection to the website
  11. const json = await response.json();
  12. // setting the content of each category
  13. setPIN(json.PIN);
  14. } catch (error) {
  15. console.error(error);
  16. }
  17. }
  18. const pressHandler = () => {
  19. navigation.navigate('Pinpage', {Pin:PIN});
  20. }
  21. useEffect(() => {
  22. getMociones();
  23. }, []);
  24. return (
  25. <View style = {globalStyles.container}>
  26. <Text style = {globalStyles.tittleText}>Home Screen</Text>
  27. <Button title="go to pin page" onPress={pressHandler}/>
  28. </View>
  29. )
  30. }