-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
27 lines (23 loc) · 1.06 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
import "react-native-gesture-handler"
import { LogBox } from "react-native"
import { NavigationContainer } from "@react-navigation/native"
import { createNativeStackNavigator } from "@react-navigation/native-stack"
import { OnboardingScreen, HomeScreen, FormScreen, MapScreen, DataScreen } from "./screens"
const Stack = createNativeStackNavigator()
export default function App() {
// Disable warning
LogBox.ignoreLogs([
'Non-serializable values were found in the navigation state',
])
return (
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen name="Onboarding" component={OnboardingScreen} options={{ headerShown: false }}/>
<Stack.Screen name="Home" component={HomeScreen} options={{ headerShown: false }}/>
<Stack.Screen name="Form" component={FormScreen} options={{ headerShown: false }}/>
<Stack.Screen name="Map" component={MapScreen} options={{ headerShown: false }}/>
<Stack.Screen name="Data" component={DataScreen} options={{ headerShown: false }}/>
</Stack.Navigator>
</NavigationContainer>
)
}