-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNavigation.js
More file actions
25 lines (23 loc) · 930 Bytes
/
Navigation.js
File metadata and controls
25 lines (23 loc) · 930 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
// import React from 'react';
// import {NavigationContainer} from '@react-navigation/native';
// import {createNativeStackNavigator} from '@react-navigation/native-stack';
// import UserForm from './src/chatModule/userForm';
// import WebSocketImpl from './src/chatModule/webSocketImpl';
// const Stack = createNativeStackNavigator();
// export default function Navigation() {
// return (
// <NavigationContainer theme={themeData}>
// <Stack.Navigator
// screenOptions={{
// headerShown: false,
// tabBarShowLabel: false,
// tabBarIndicator: false,
// tabBarStyle: {display: 'none'},
// animation: 'none',
// }}>
// <Stack.Screen name="UserForm" component={UserForm} />
// <Stack.Screen name="WebSocketImpl" component={WebSocketImpl} />
// </Stack.Navigator>
// </NavigationContainer>
// );
// }