-
Notifications
You must be signed in to change notification settings - Fork 19
/
App.js
67 lines (64 loc) · 1.36 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
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
import React, { Component } from 'react';
import {
StyleSheet,
Text,
View,
ScrollView,
Image
} from 'react-native';
import {DrawerNavigator,DrawerView} from 'react-navigation';
import * as WeChat from 'react-native-wechat';
import HomePage from './view/HomePage';
import RecordList from './view/RecordList';
import BaiduMapView from './view/BaiduMap';
import MainPageNavi from './view/MainPage.navi';
import TrackShare from './view/TrackShowShare';
//设置导航器,用于页面切换
const MyApp = DrawerNavigator({
/*'主页': {
screen: HomePage,
},*/
'MainPage': {
screen: MainPageNavi,
navigationOptions: {
title: 'Running'
}
},
'记录': {
screen: RecordList,
navigationOptions: {
title: '记录'
}
}
},{
//设置初始页
initialRouteName: 'MainPage',
drawerWidth: 200,
contentOptions: {
activeTintColor: '#e91e63',
inactiveTintColor: '#fff',
style: {
},
},
//slider的样式
contentComponent: props => (
<ScrollView style={styles.slider}>
<Image
source={require('./images/run.png')}
style={[styles.icon]}
/>
<DrawerView.Items {...props}/>
</ScrollView>
)
});
const styles = StyleSheet.create({
icon: {
width: 100,
height: 100,
margin: 20
},
slider: {
backgroundColor: '#2c2c2c',
}
});
export default MyApp;