-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.js
More file actions
144 lines (133 loc) · 4.93 KB
/
App.js
File metadata and controls
144 lines (133 loc) · 4.93 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { StyleSheet, Text, View, TouchableOpacity, Image } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import HomeScreen from './screens/HomeScreen';
import AddImageScreen from './screens/AddImageScreen';
import MapScreen from './screens/MapScreen';
import AboutScreen from './screens/AboutScreen';
import RandomImageScreen from './screens/RandomImageScreen';
import LocationDetailScreen from './screens/LocationDetailScreen';
import PrivacyPolicy from './screens/PrivacyPolicy';
import TermsConditions from './screens/TermsConditions';
import { supabase } from "./supabase-service";
import 'react-native-url-polyfill/auto'
import { Header } from './components/Header';
// import firebase from "firebase";
const Stack = createNativeStackNavigator();
const globalScreenOptions ={
headerStyle: { backgroundColor: '#5d8aa6', borderBottomWidth: 0 },
headerTitleStyle: {color: "#5d8aa6"}, //header text color
headerTintColor: "#03395b", //header icon color
headerShadowVisible: false
}
function LogoTitle(){
return(
<View style={headerStyles.container}>
<TouchableOpacity>
<Image
style={headerStyles.logo}
source={require('./assets/logo.png')}
/>
</TouchableOpacity>
<Text style={{color: 'white', flexDirection: 'row'}}>text</Text>
<View style={headerStyles.iconsContainer}>
<TouchableOpacity>
<Image
source={{
uri: 'https://img.icons8.com/fluency/48/ffffff/map-marker.png'
}}
style={headerStyles.icon}
/>
</TouchableOpacity>
<TouchableOpacity>
<Image
source={{
uri: 'https://img.icons8.com/fluency-systems-regular/60/ffffff/plus-2-math.png'
}}
style={headerStyles.icon}
/>
</TouchableOpacity>
</View>
</View>
);
}
export default function App() {
return (
<>
<NavigationContainer style={styles.container}>
<Stack.Navigator screenOptions={globalScreenOptions} >
{/* <Stack.Screen name="Home" component={HomeScreen}
options={{ headerTitle: (props) => <LogoTitle {...props}/>}} /> */}
<Stack.Screen
name="Home"
component={HomeScreen}
options={{title: "Home", headerShown: false}}
/>
<Stack.Screen name="About" component={AboutScreen}/>
<Stack.Screen name="Add Image"
component={AddImageScreen}
options={{
headerStyle:{
backgroundColor: 'black'
},
headerTitleStyle:{ color: 'black'},
headerTintColor: 'white'
}}
/>
<Stack.Screen name="Map" component={MapScreen}/>
<Stack.Screen name="Random" component={RandomImageScreen} options={{title: "Random Location"}}/>
<Stack.Screen name="Location Detail"
component={LocationDetailScreen}
options={{
headerStyle:{
backgroundColor: 'black'
},
headerTitleStyle:{ color: 'black'},
headerTintColor: '#5d8aa6'
}}
/>
<Stack.Screen name="Privacy Policy" component={PrivacyPolicy}/>
<Stack.Screen name="Terms and Conditions" component={TermsConditions}/>
</Stack.Navigator>
</NavigationContainer>
</>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
const headerStyles = StyleSheet.create({
container:{
justifyContent: 'space-between',
alignItems: 'center',
flexDirection: 'row',
marginHorizontal: 20,
// paddingTop: 15,
},
iconsContainer:{
flexDirection: 'row',
},
icon:{
width: 30,
height: 30,
marginLeft: 10,
resizeMode: 'contain',
},
logo:{
width: 50,
height: 50,
resizeMode: 'contain'
}
})
{/* <View style={styles.container}>
<Text>graffmap</Text>
<StatusBar style="auto" />
{/* "auto" for phone's default light/dark mode settings. "light" for always white */}
// </View> */}