import * as React from 'react' import { NavigationContainer } from '@react-navigation/native' import { createBottomTabNavigator } from '@react-navigation/bottom-tabs' import { createStackNavigator } from '@react-navigation/stack' import Home from '../screens/Home' import Store from '../screens/Store' import Chat from '../screens/Chat' import Settings from '../screens/Settings' import Profile from '../screens/Profile' import SkinList from '../screens/SkinList' import GameChoice from '../screens/GameChoice' import SignIn from '../screens/SignIn' import SignUp from '../screens/SignUp' const HomeStack = createStackNavigator(); /* Stack of screens for home and game choice */ function HomeStackScreen() { return ( ); } const StoreStack = createStackNavigator(); /* Stack of screens for the store and the purshase of new skins */ function StoreStackScreen() { return ( ); } const ChatStack = createStackNavigator(); /* Stack of screens for conversations */ function ChatStackScreen() { return ( ); } const ProfileStack = createStackNavigator(); /* Stack of screens for the profile and the changement of informations */ function ProfileStackScreen() { return ( ); } const Tab = createBottomTabNavigator() /* Tab navigator to navigate between the stacks */ function MainTabNavigator() { return ( ) } export default MainTabNavigator