-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
48 lines (46 loc) · 1.04 KB
/
App.js
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
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View, Image } from 'react-native';
import restaurants from './assets/data/restaurants.json';
export default function App() {
return (
<View style={styles.container}>
<View style={styles.restaurantContainer}>
<Image source={{ uri: restaurants[0].image }}
style={styles.image}
/>
<Text style={styles.title}>
{restaurants[0].dishes[0].name}
</Text>
<Text style={styles.subtitle}>
{`$ ${restaurants[0].dishes[0].price}`}
</Text>
</View>
<StatusBar style="auto" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
padding: 10
},
restaurantContainer: {
width: '100%'
},
image: {
width: '100%',
aspectRatio: 5/3,
marginBottom: 5,
},
title: {
fontSize: 18,
fontWeight: '500',
marginVertical: 5,
},
subtitle: {
color: 'grey'
}
});