forked from servicemob/attshapehackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
24 lines (19 loc) · 818 Bytes
/
App.js
File metadata and controls
24 lines (19 loc) · 818 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
import React from 'react';
import { createStackNavigator, createAppContainer } from 'react-navigation';
import { createBottomTabNavigator } from 'react-navigation-tabs';
import Home from './containers/Home';
import ARAssistant from './containers/ARAssistant';
import GoesInArKit from './containers/GoesInArKit';
import Icon from 'react-native-vector-icons/FontAwesome';
const ACTIVE_COLOR = "#ffffff";
const INACTIVE_COLOR = '#d8d8d8';
const MainNavigator = createStackNavigator({
Home: { screen: Home },
ARAssistant: { screen: ARAssistant },
GoesInArKit: { screen: GoesInArKit }
//All the screens for Support tab will go here
//Can ignore Login - I am working off of Hunter Native
});
const App = createAppContainer(MainNavigator);
// const App = createAppContainer(AppTabNavigator)
export default App;