-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
42 lines (39 loc) · 1.29 KB
/
Copy pathApp.js
File metadata and controls
42 lines (39 loc) · 1.29 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
import { StatusBar } from 'expo-status-bar';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import BottomTabs from './navigation/BottomTabs';
import ManageExpense from './screens/ManageExpense';
import { GlobalStyles } from './constants/styles';
import ExpenssesContextProvider from './store/expenses-context';
const Stack = createNativeStackNavigator();
const App = () => {
return (
<>
<StatusBar style="auto" />
<ExpenssesContextProvider>
<NavigationContainer>
<Stack.Navigator screenOptions={{
headerStyle: {
backgroundColor: GlobalStyles.COLORS.background,
headerTintColor: GlobalStyles.COLORS.dark,
}
}}>
<Stack.Screen
name="BottomTabs"
component={BottomTabs}
options={{
headerShown: false
}}
/>
<Stack.Screen name="ManageExpense" component={ManageExpense}
options={{
presentation: 'modal',
title: 'Manage Expense',
}} />
</Stack.Navigator>
</NavigationContainer>
</ExpenssesContextProvider>
</>
)
}
export default App