-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
40 lines (32 loc) · 1023 Bytes
/
App.js
File metadata and controls
40 lines (32 loc) · 1023 Bytes
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
import React, { Component, useContext } from 'react'
import { Text, View, Image, StyleSheet, SafeAreaView} from 'react-native'
import {NavigationContainer} from '@react-navigation/native';
import {createStackNavigator} from '@react-navigation/stack';
//screens
import Splash from './src/Splash';
import Main from './src/Main'
import Analysis from './src/Analysis';
import Chat from './src/Screens/Chat';
import { StateProvider } from './src/States';
const Stack = createStackNavigator();
const App = () => {
return (
<StateProvider>
<NavigationContainer>
<Stack.Navigator initialRouteName="Splash">
<Stack.Screen
name="Splash"
options={{animationEnabled: false, header: () => null}}
component={Splash}
/>
<Stack.Screen
name="chat"
options={{animationEnabled: true, header: () => null}}
component={Main}
/>
</Stack.Navigator>
</NavigationContainer>
</StateProvider>
);
};
export default App;