forked from callmeyonggor/Bill-planner
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathApp.js
219 lines (209 loc) · 5.88 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
import React, {useEffect} from 'react';
import {Text, View, TextInput, StyleSheet, Image} from 'react-native';
import Ionicon from 'react-native-vector-icons/Ionicons';
import FontAwesome5 from 'react-native-vector-icons/FontAwesome5';
import {NavigationContainer} from '@react-navigation/native';
import {createBottomTabNavigator} from '@react-navigation/bottom-tabs';
import {MainStackNavigator} from './StackNavigator';
import {createStackNavigator} from '@react-navigation/stack';
import AddScreen from './screen/Add';
import HomeScreen from './screen/Home';
import UpdateBill from './screen/Edit';
import SettingsScreen from './screen/Settings';
import UpdateBills from './screen/Edit';
import ViewAllBills from './screen/BillScreen';
import LoginScreen from './screen/LoginScreen';
import OnBoarding from './screen/OnBoarding';
import RegisterScreen from './screen/RegisterScreen';
import firebase from '@react-native-firebase/app';
import BillDetailScreen from './screen/BillDetailScreen';
import About from './screen/AboutUs';
const firebaseConfig = {
apiKey: 'AIzaSyBR_GBvYlqhx7GbAvcX1QGVPsrdywEJnUU',
authDomain: 'bill-bell.firebaseapp.com',
databaseURL:
'https://bill-bell-default-rtdb.asia-southeast1.firebasedatabase.app',
projectId: 'bill-bell',
storageBucket: 'bill-bell.appspot.com',
messagingSenderId: '429962336892',
appId: '1:429962336892:web:fe3e6e8f5ac97ef9ca87f9',
measurementId: 'G-QS3PPRQ789',
};
// Initialize Firebase
if (firebase.apps.length === 0) {
firebase.initializeApp(firebaseConfig);
}
const Stack = createStackNavigator();
const Tab = createBottomTabNavigator();
function Main() {
return (
<Tab.Navigator
screenOptions={{
tabBarShowLabel: false,
tabBarHideOnKeyboard: true,
tabBarStyle: {
position: 'absolute',
height: 60,
bottom: Platform.OS == 'android' ? 15 : 20,
left: 15,
right: 15,
borderRadius: 15,
},
}}>
<Tab.Screen
name={'Home'}
component={HomeScreen}
options={{
title: '',
headerShown: false,
tabBarIcon: ({focused}) => (
<View
style={{
position: 'absolute',
top: 15,
}}>
<Image
source={require('./assets/home.png')}
style={{
width: 20,
height: 20,
tintColor: focused ? '#FF9b9b' : 'gray',
}}
/>
</View>
),
}}
/>
<Tab.Screen
name={'ViewBill'}
component={MainStackNavigator}
options={{
title: '',
headerShown: false,
tabBarIcon: ({focused}) => (
<View
style={{
position: 'absolute',
top: 15,
}}>
<Image
source={require('./assets/clipboard-list.png')}
style={{
width: 20,
height: 20,
tintColor: focused ? '#FF9b9b' : 'gray',
}}
/>
</View>
),
}}
/>
<Tab.Screen
name={'Add'}
component={AddScreen}
options={{
title: '',
headerShown: false,
tabBarIcon: ({focused}) => (
<View
style={{
width: 65,
height: 65,
backgroundColor: '#FF9b9b',
borderRadius: 50,
justifyContent: 'center',
alignItems: 'center',
marginBottom: Platform.OS == 'android' ? 30 : 20,
}}>
<Image
source={require('./assets/plus.png')}
style={{
width: 22,
height: 22,
tintColor: 'white',
}}
/>
</View>
),
}}
/>
<Tab.Screen
name={'About'}
component={About}
options={{
title: '',
headerShown: false,
tabBarIcon: ({focused}) => (
<View
style={{
position: 'absolute',
top: 15,
}}>
<Image
source={require('./assets/qm.png')}
style={{
width: 20,
height: 20,
tintColor: focused ? '#FF9b9b' : 'gray',
}}
/>
</View>
),
}}
/>
<Tab.Screen
name={'Settings'}
component={SettingsScreen}
options={{
title: '',
headerShown: false,
tabBarIcon: ({focused}) => (
<View
style={{
position: 'absolute',
top: 15,
}}>
<Image
source={require('./assets/cog.png')}
style={{
width: 20,
height: 20,
tintColor: focused ? '#FF9b9b' : 'gray',
}}
/>
</View>
),
}}
/>
</Tab.Navigator>
);
}
export default function App() {
return (
<NavigationContainer>
<Stack.Navigator initialRouteName="OnBoarding">
<Stack.Screen
name="OnBoarding"
component={OnBoarding}
options={{headerShown: false}}
/>
<Stack.Screen
name="Login"
component={LoginScreen}
options={{headerShown: false}}
/>
<Stack.Screen
name="Register"
component={RegisterScreen}
options={{headerShown: false}}
/>
<Stack.Screen
name="Main"
component={Main}
options={{headerShown: false}}
/>
</Stack.Navigator>
</NavigationContainer>
);
}
const styles = StyleSheet.create({});