-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathApp.js
39 lines (35 loc) · 1.21 KB
/
App.js
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 { createStackNavigator, createSwitchNavigator, createAppContainer } from 'react-navigation';
import { setCustomView, setCustomTextInput, setCustomText, setCustomImage, setCustomTouchableOpacity } from 'react-native-global-props';
import { Platform } from 'react-native';
import Variables from './styles/Variables';
import SignInScreen from './screens/SignInScreen';
import AuthLoadingScreen from './screens/AuthLoadingScreen';
import DashboardScreen from './screens/DashboardScreen';
import TripScreen from './screens/TripScreen';
import StopScreen from './screens/StopScreen';
import DocumentScreen from './screens/DocumentScreen';
const customTextProps = {
style: {
fontSize: 18,
fontFamily: Platform.OS === 'ios' ? 'HelveticaNeue' : 'Roboto',
color: Variables.colorDarkGray
}
};
setCustomText(customTextProps);
const AppStack = createStackNavigator({
Dashboard: DashboardScreen,
Trip: TripScreen,
Stop: StopScreen,
Document: DocumentScreen
});
const AuthStack = createStackNavigator({ SignIn: SignInScreen });
export default createAppContainer(createSwitchNavigator(
{
AuthLoading: AuthLoadingScreen,
App: AppStack,
Auth: AuthStack,
},
{
initialRouteName: 'AuthLoading',
}
));