-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
39 lines (33 loc) · 1.23 KB
/
App.tsx
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
import {StyleSheet, Text, View} from 'react-native';
import React from 'react';
import {NavigationContainer} from '@react-navigation/native';
import {createBottomTabNavigator} from '@react-navigation/bottom-tabs';
import {createNativeStackNavigator} from '@react-navigation/native-stack';
import Status from './src/components/screenComponents/Status';
import BottomTabScreen from './src/components/screenComponents/BottomTabScreen';
import Login from './src/components/screens/Login';
import Splash from './src/components/screens/Splash';
export type RootStackParams = {
Stories: undefined;
Status: undefined;
Post: undefined;
Home: undefined;
BottomTabScreen: undefined;
Login: undefined;
Splash: undefined;
};
const App = () => {
const Stack = createNativeStackNavigator();
return (
<NavigationContainer>
<Stack.Navigator screenOptions={{headerShown: false}}>
<Stack.Screen name="Splash" component={Splash} />
<Stack.Screen name="Login" component={Login} />
<Stack.Screen name="BottomTabScreen" component={BottomTabScreen} />
<Stack.Screen name="Status" component={Status} />
</Stack.Navigator>
</NavigationContainer>
);
};
export default App;
const styles = StyleSheet.create({});