import React, { useState } from 'react'; import { SafeAreaView, StyleSheet, ScrollView, View, Text, StatusBar, FlatList, TouchableOpacity, Image, } from 'react-native'; import { Header, LearnMoreLinks, Colors, DebugInstructions, ReloadInstructions, } from 'react-native/Libraries/NewAppScreen'; import { NavigationContainer } from '@react-navigation/native' import { createStackNavigator } from '@react-navigation/stack' import styles from './styles/liststyles' import { url } from './resources/fetchInfo.json' const Stack = createStackNavigator(); export const LunchInfo = ({route}) => { const item = route.params; return ( Description: {item.text} Location: {item.loc} ) } function LunchEvent (props) { const item = props.item return( props.navigation.navigate('LunchInfo', {data:props.data,name:item.title,text:item.text,loc:item.loc})} activeOpacity={0.8}> {item.title} ) } class LunchEvents extends React.Component { constructor(props) { super(props) this.state = { data: [] } } componentDidMount() { fetch(`${url}/api/en/lunchEvents`,{ headers: { 'Cache-Control': 'no-cache' } } ) .then((response) => { return response.text(); }) .then((json) => { this.setState({data: JSON.parse(json)}); }) .catch((error) => console.error(error)) } render() { return ( } keyExtractor={item=>JSON.stringify(item)} /> ) } } export default LunchEvents;