-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathProductComponent.js
78 lines (73 loc) · 1.42 KB
/
ProductComponent.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
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
import React, { Component } from 'react';
import {
Image,
ListView,
StyleSheet,
Text,
TouchableOpacity,
View
} from 'react-native';
export default class ProductComponent extends Component {
getImageSource() {
if (this.props.beer.labels) {
return this.props.beer.labels.medium
} else {
return 'http://vivekarora.com/images/bottle1.png';
}
}
render() {
return (
<View style={styles.container}>
<View style={styles.top}>
<Image style={styles.image} source={{uri: this.getImageSource()}} />
</View>
<View style={styles.bottom}>
<Text style={styles.nameText}>{this.props.beer.name}</Text>
<Text style={styles.descText}>{this.props.beer.description}</Text>
</View>
<TouchableOpacity
onPress={ _ => this.props.navigator.pop() }
style={styles.backbuttonWrapper}
>
<Text style={styles.backButtonText}>< back</Text>
</TouchableOpacity>
</View>
)
}
}
const styles = StyleSheet.create({
container: {
backgroundColor: '#FFF',
flex: 1
},
backbuttonWrapper: {
top: 40,
left: 20,
position: 'absolute'
},
backButtonText: {
color: 'blue'
},
top: {
paddingTop: 100,
justifyContent: 'center',
alignItems: 'center'
},
image: {
height: 200,
width: 200
},
bottom: {
alignItems: 'center',
flex: 1,
justifyContent: 'space-around',
paddingLeft: 20,
paddingRight: 20,
},
nameText: {
fontSize: 24
},
descText: {
fontSize: 16
}
});