-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGardenEvents.js
67 lines (61 loc) · 2.22 KB
/
GardenEvents.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
import React, { useState } from 'react';
import { StyleSheet, Text, View, Image, Pressable } from 'react-native';
import { NavigationContainer, useNavigation } from '@react-navigation/native';
import Images from '../Themes/images'
import BetterButton from "../components/BetterButton";
import Colors from "../Themes/colors.js";
import GlobalStyles from "../Themes/global-styles.js";
/*
This file has the styling format for the events listed in the GardenStack.
It is exported and used as EventItem in the GardenStack.
*/
export default function EventItem({ name1, name2, id, imageFile }) {
const navigation = useNavigation();
return (
<View style={{...GlobalStyles.row, ...styles.eventRow}}>
<Pressable
onPress={() => {navigation.navigate('HappyHourDetail')}}
style={styles.pressableArea}
>
<View style={{...styles.event, ...GlobalStyles.col, ...GlobalStyles.roundedNotPill}}>
<Image style={styles.image} source={imageFile} />
<Text style={{...GlobalStyles.regText, ...GlobalStyles.textCenter, ...styles.name}}>{name1}</Text>
</View>
</Pressable>
<Pressable
onPress={() => {navigation.navigate('HappyHourDetail')}}
style={styles.pressableArea}
>
<View style={{...styles.event, ...GlobalStyles.col, ...GlobalStyles.roundedNotPill}}>
<Image style={styles.image} source={imageFile} />
<Text style={{...GlobalStyles.regText, ...GlobalStyles.textCenter, ...styles.name}}>{name2}</Text>
</View>
</Pressable>
</View>
);
}
const styles = StyleSheet.create({
event: {
backgroundColor: Colors.brown,
height: "100%",
padding: 5,
},
eventRow: {
paddingLeft: GlobalStyles.CONSTANTS.padding,
paddingRight: GlobalStyles.CONSTANTS.padding,
},
image: {
resizeMode: 'contain',
aspectRatio: 1,
height: "100%",
},
pressableArea: {
width: (GlobalStyles.CONSTANTS.width - 3 * GlobalStyles.CONSTANTS.padding) / 2,
aspectRatio: 1,
margin: GlobalStyles.CONSTANTS.padding / 2,
},
name: {
top: "-79%",
maxWidth: "88%",
}
});