-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
23 lines (21 loc) · 1000 Bytes
/
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
import React, { useState, useEffect } from 'react';
import { StyleSheet, Text, View, Platform, Button, Alert } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import Login from './screens/Login';
import Home from './screens/Home';
import Menu from './screens/Menu';
import History from './screens/History';
const Stack = createNativeStackNavigator();
export default function App() {
return (
<NavigationContainer>
<Stack.Navigator initialRouteName="Login">
<Stack.Screen name="Login" component={Login} options={{ headerShown: false }} />
<Stack.Screen name="Home" component={Home} options={{ headerShown: false }} />
<Stack.Screen name="Menu" component={Menu} options={{ headerShown: false }} />
<Stack.Screen name="History" component={History} options={{ headerShown: false }} />
</Stack.Navigator>
</NavigationContainer>
);
}