-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.ios.js
68 lines (63 loc) · 1.45 KB
/
index.ios.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import React from 'react';
import { AppRegistry, Platform } from 'react-native';
// import codePush from 'react-native-code-push'
import { StackNavigator } from 'react-navigation';
import { ThemeProvider } from 'styled-components/native';
import { COLORS } from 'assets/styles/constants';
import { FAQ, RailMap, StationDetail, ScheduleInfo } from 'scenes';
const AppNavigator = StackNavigator({
Main: {
screen: RailMap,
navigationOptions: {
title: 'Charlotte Light Rail'
}
},
Faq: {
screen: FAQ,
navigationOptions: {
title: 'Help'
}
},
StationDetail: {
screen: StationDetail,
navigationOptions: {
title: 'Station Info'
}
},
StationSchedule: {
screen: ScheduleInfo,
navigationOptions: {
title: 'Station Schedules'
}
}
}, {
initialRouteName: 'Main',
navigationOptions: {
headerStyle: {
backgroundColor: COLORS.backgroundColorDark,
...Platform.select({
ios: {
shadowOpacity: 0
},
android: {
elevation: 0
}
})
},
headerTintColor: COLORS.primaryTextColor
}
});
export default class lightrail extends React.Component {
componentDidMount() {
// Uncomment out this line to enable codePush syncing
// codePush.sync()
}
render() {
return (
<ThemeProvider theme={COLORS}>
<AppNavigator />
</ThemeProvider>
);
}
}
AppRegistry.registerComponent('lightrail', () => lightrail);