-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
81 lines (68 loc) · 1.76 KB
/
Copy pathApp.js
File metadata and controls
81 lines (68 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import React from 'react';
import {
ActivityIndicator,
Text,
TextInput,
View,
StyleSheet,
FlatList
} from 'react-native';
export default class FetchExample extends React.Component {
constructor(props) {
super(props);
this.state = {isLoading: true}
}
componentDidMount() {
// Latitude/Longitude arguments are New York City
return fetch('https://informed-wait.herokuapp.com/nearby_restaurants?lat=40.7128&lon=-74.0060')
.then((response) => response.json())
.then((responseJson) => {
this.setState({
isLoading: false,
dataSource: responseJson,
}, function () {
});
})
.catch((error) => {
console.error(error);
});
}
render() {
if (this.state.isLoading) {
return (
<View style={{flex: 1, padding: 20}}>
<ActivityIndicator/>
</View>
)
}
return (
<View style={styles.container}>
<FlatList
style={styles.listR}
data={this.state.dataSource}
renderItem={({item}) => <Text>{item[0]}</Text>}
/>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
height: '100%'
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
listR: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
paddingTop: 50
},
});