-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathApp.js
174 lines (160 loc) · 5.18 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
import React,{useEffect} from "react";
import { Text, View, TextInput, StyleSheet, Image } from 'react-native';
import { Ionicons } from '@expo/vector-icons';
import { NavigationContainer } from '@react-navigation/native';
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
import { MainStackNavigator } from "./StackNavigator";
import { createStackNavigator } from "@react-navigation/stack";
import { FontAwesome5 } from '@expo/vector-icons';
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 "firebase";
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
tabBarOptions={{ showLabel: false, style:{ position: 'absolute', height: 60, bottom: Platform.OS == 'android' ? 15 : 20, left: 15, right: 15, borderRadius: 15, } }}>
<Tab.Screen
name={'Home'}
component={HomeScreen}
options={{
headerShown: false,
tabBarIcon: ({ focused }) => (
<View
style={{
position: 'absolute',
top: 20,
}}>
<FontAwesome5
name="home"
size={20}
color={focused ? '#FF9b9b' : 'gray'}></FontAwesome5>
</View>
),
}}
/>
<Tab.Screen
name={'ViewBill'}
component={MainStackNavigator}
options={{
headerShown: false,
tabBarIcon: ({ focused }) => (
<View
style={{
position: 'absolute',
top: 20,
}}>
<FontAwesome5
name="clipboard-list"
size={20}
color={focused ? '#FF9b9b' : 'gray'}></FontAwesome5>
</View>
),
}}
/>
<Tab.Screen
name={'Add'}
component={AddScreen}
options={{
headerShown: false,
tabBarIcon: ({ focused }) => (
<View
style={{
width: 55,
height: 55,
backgroundColor: '#FF9b9b',
borderRadius: 30,
justifyContent: 'center',
alignItems: 'center',
marginBottom: Platform.OS == 'android' ? 50 : 30,
}}>
<Image
source={require('./assets/plus.png')}
style={{
width: 22,
height: 22,
tintColor: 'white',
}}></Image>
</View>
),
}}
/>
<Tab.Screen
name={'Edit'}
component={UpdateBill}
options={{
headerShown: false,
tabBarIcon: ({ focused }) => (
<View
style={{
position: 'absolute',
top: 20,
}}>
<FontAwesome5
name="edit"
size={20}
color={focused ? '#FF9b9b' : 'gray'}
/>
</View>
),
}}
/>
<Tab.Screen
name={'Settings'}
component={SettingsScreen}
options={{
headerShown: false,
tabBarIcon: ({ focused }) => (
<View
style={{
position: 'absolute',
top: 20,
}}>
<FontAwesome5
name="cog"
size={20}
color={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({
});