-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHome.js
91 lines (81 loc) · 2.06 KB
/
Home.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
79
80
81
82
83
84
85
86
87
88
89
90
91
import React, {useState} from 'react';
// import { AppLoading } from 'expo';
// import Navigator from './route/NavigDraw'
import {
StyleSheet,
Text,
View,
Image,
ImageBackground,
Dimensions,
TouchableOpacity,
Button,
BackHandler,
} from 'react-native';
export default function Home({navigation}) {
const StorePress = () => {
navigation.navigate('Store');
};
const KitchenPress = () => {
navigation.navigate('Kitchen');
};
// BackHandler.addEventListener('hardwareBackPress', function () {BackHandler.exitApp()});
// BackHandler.removeEventListener('hardwareBackPress', true);
return (
<View style={styles.home}>
<TouchableOpacity
style={styles.button}
activeOpacity={0.8}
onPress={KitchenPress}>
<ImageBackground
source={require('../assets/images/Kitchen.jpg')}
style={styles.image}>
<View style={styles.textcontainer}>
<Text style={styles.text}>Kitchen</Text>
</View>
</ImageBackground>
</TouchableOpacity>
<TouchableOpacity
style={styles.button}
activeOpacity={0.8}
onPress={StorePress}>
<ImageBackground
source={require('../assets/images/Store.jpg')}
style={styles.image}>
<View style={styles.textcontainer}>
<Text style={styles.text}>Store</Text>
</View>
</ImageBackground>
</TouchableOpacity>
{/* <Button title= 'Goto /> */}
</View>
);
}
const styles = StyleSheet.create({
home: {
flex: 1,
backgroundColor: '#e8e8e8',
},
text: {
fontFamily: 'Roboto-Bold',
color: '#d00f16',
marginLeft: 16,
fontSize: 45,
},
image: {
justifyContent: 'flex-end',
resizeMode: 'contain',
width: Dimensions.get('window').width,
height: Dimensions.get('window').height / 2.5,
marginTop: 10,
},
textcontainer: {
backgroundColor: 'rgba(0,0,0,0.75)',
width: Dimensions.get('window').width,
height: 60,
justifyContent: 'center',
marginBottom: 12,
},
// button:{
// }
});