-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
64 lines (62 loc) · 1.33 KB
/
index.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
import { AppRegistry } from 'react-native';
import Main from './components/Main';
import NewWorkout from './components/NewWorkout';
import NewDay from './components/NewDay';
import Workout from './components/Workout';
import StartWorkout from './components/StartWorkout';
import NewRoutine from './components/NewRoutine';
import AddNewWorkout from './components/AddNewWorkout';
import { StackNavigator} from 'react-navigation';
AppRegistry.registerComponent('EZRoutine', () => App);
const App = StackNavigator(
{
'Main':
{
screen: Main,
navigationOptions: {
headerTitle: 'Home',
},
},
'NewWorkout':
{
screen: NewWorkout,
navigationOptions: {
headerTitle: 'Edit Day',
},
},
'AddNewWorkout':
{
screen: AddNewWorkout,
navigationOptions: {
headerTitle: 'Edit Workout',
},
},
'NewRoutine':
{
screen: NewRoutine,
navigationOptions: {
headerTitle: 'Add Routine',
},
},
'NewDay':
{
screen: NewDay,
navigationOptions: {
headerTitle: 'Edit Routine',
},
},
'StartWorkout':
{
screen: StartWorkout,
navigationOptions: {
headerTitle: 'Start Workout',
},
},
'Workout':
{
screen: Workout,
navigationOptions: {
headerTitle: 'Workout',
},
},
});