-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
53 lines (49 loc) · 1002 Bytes
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow
*/
import { createStackNavigator, createNavigator, StackRouter, createAppContainer} from 'react-navigation';
import React from 'react';
import HomeScreen from './HomeScreen';
import Stations from './Stations';
import Line from './Line';
import Searchline from './Searchline';
import Lineinfo from './Lineinfo';
import Save from './Save';
import Maps from './Maps';
import AnimatedMarkers from './animatedMap';
import MapTest from './mapsTest';
const RootStack = createStackNavigator({
Home: {
screen: HomeScreen
},
Stations: {
screen: Stations
},
Line: {
screen: Line
},
Searchline:{
screen: Searchline
},
Lineinfo: {
screen: Lineinfo
},
Save: {
screen: Save
},
Maps: {
screen: Maps
},
AnimatedMarkers: {
screen: AnimatedMarkers
},
MapTest: {
screen: MapTest
}
});
const App = createAppContainer(RootStack)
export default App;