-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
357 lines (322 loc) · 8.8 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow
*/
import React, { Fragment } from 'react';
import {
Platform,
SafeAreaView,
StyleSheet,
ScrollView,
View,
Text,
Dimensions,
Button,
StatusBar,
Image,
Alert,
TextInput,
AsyncStorage,
TouchableOpacity,
Linking,
} from 'react-native';
import Router from "./srcHeaderDrawer/router";
// import MAP from './src/index'
// import Router from './src/router'
import Loding from './Loading/Login';
// import Login from './src/Login'
// import Sets from './src/Set'
// import { createBottomTabNavigator, createSwitchNavigator, createStackNavigator, withNavigation } from 'react-navigation';
import { createSwitchNavigator, createAppContainer } from 'react-navigation';
import { createStackNavigator } from 'react-navigation-stack';
import BottomTabScreen from "./src/router";
import Drawer from "./srcDrawer/router";
import IndexScreen from "./srcHeaderDrawer/indexScreen";
// import { createBottomTabNavigator, createAppContainer, createSwitchNavigator, createStackNavigator, withNavigation } from 'react-navigation';
// import {createAppContainer, createStackNavigator } from 'react-navigation';
// import Icon from 'react-native-vector-icons/FontAwesome5';
import FontAwesome5 from 'react-native-vector-icons/FontAwesome5';
// const icon = <FontAwesome5 name={'comments'} />;
// const icon = <FontAwesome5 name={'comments'} solid />;
// const icon = <FontAwesome5 name={'git'} brand />;
// import MapView, { Marker } from 'react-native-maps';
const instructions = Platform.select({
ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu',
android:
'Double tap R on your keyboard to reload,\n' +
'Shake or press menu button for dev menu',
});
const { width, height } = Dimensions.get('window');
class DetailsScreen extends React.Component {
static navigationOptions = {
title: 'DetailsScreen',
/* No more header config here! */
};
render() {
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Text>Details Screen</Text>
<FontAwesome5 name={'comments'} />
<Button
title="Go to BottomTabScreen"
onPress={() => this.props.navigation.navigate('BottomTabScreen')}
// onPress={() => this.props.navigation.push('BottomTabScreen')}
/>
<Button
title="Go to DrawerScreen"
// onPress={() => this.props.navigation.push('DrawerScreen')}
onPress={() => this.props.navigation.navigate('DrawerScreen')}
/>
<Button
title="Go to Header Screen"
// onPress={() => this.props.navigation.push('DrawerScreen')}
onPress={() => this.props.navigation.navigate('IndexScreen')}
/>
<Button
title="Go to Header RouterScreen "
// onPress={() => this.props.navigation.push('DrawerScreen')}
onPress={() => this.props.navigation.navigate('RouterScreen')}
/>
{/* <FontAwesome5 name="battery-full" size={30} color="#6787A0" /> */}
</View>
);
}
}
// class BottomTabScreen extends React.Component {
// static navigationOptions = {
// title: 'DetailsScreen2',
// /* No more header config here! */
// };
// render() {
// return (
// <View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
// <Text>BottomTab Screen</Text>
// <Button
// title="Go to Home"
// // onPress={() => this.props.navigation.push('Home')}
// onPress={() => this.props.navigation.popToTop()}
// />
// {/* <FontAwesome5 name="battery-full" size={30} color="#6787A0" /> */}
// </View>
// );
// }
// }
// class DrawerScreen extends React.Component {
// static navigationOptions = {
// title: 'DetailsScreen2',
// /* No more header config here! */
// };
// render() {
// return (
// <View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
// <Text>Drawer Screen</Text>
// <Button
// title="Go to Home"
// // onPress={() => this.props.navigation.push('Home')}
// onPress={() => this.props.navigation.popToTop()}
// />
// {/* <FontAwesome5 name="battery-full" size={30} color="#6787A0" /> */}
// </View>
// );
// }
// }
// const App = () => {
// return (
// // <MapView
// // initialRegion={{
// // latitude: 37.78825,
// // longitude: -122.4324,
// // latitudeDelta: 0.0922,
// // longitudeDelta: 0.0421,
// // }}
// // />
// <Fragment>
// <Text>Home Screen</Text>
// <Button
// title="Go to Details"
// onPress={() => this.props.navigation.navigate('DetailsScreen')}
// />
// <MAP/>
// </Fragment>
// );
// };
const AppSwitchNavigator = createSwitchNavigator({
HomeScreen: {
screen: DetailsScreen,
// navigationOptions: {
// navigationOptions: () => {
// return {
// headerTitle: 'Tenant'
// };
// }
// // header: null,
// },
},
BottomTabScreen: {
screen: BottomTabScreen,
navigationOptions: {
// header: null,
tabBarLabel: 'Screen A',
},
},
DrawerScreen: {
screen: Drawer,
navigationOptions: {
// header: null,
headerTitle: '我是DrawerScreen',
},
},
RouterScreen: {
screen: Router,
navigationOptions: {
// header: null,
headerTitle: '我是有Header的DrawerScreenTitle',
},
},
IndexScreen: {
screen: createStackNavigator({
index: {
screen: IndexScreen,
// navigationOptions: {
// tabBarLabel: 'A!',
// headerTitle: '我是有Header的DrawerScreen',
// // header: null,
//這段移到到元件內才可以減少自訂Header的麻煩
// },
defaultNavigationOptions: {
title: '我是有Header的DrawerScreenTitle',
// header: null,
},
},
}),
},
});
// const RootStack = createStackNavigator({
// Home: {
// screen: DetailsScreen,
// navigationOptions: {
// // header: null,
// },
// },
// BottomTabScreen: {
// screen: BottomTabScreen,
// navigationOptions: {
// // header: null,
// tabBarLabel: 'Screen A',
// },
// },
// DrawerScreen: {
// screen: Drawer,
// navigationOptions: {
// header: null,
// },
// },
// Loding: {
// screen: Loding,
// navigationOptions: {
// header: null,
// },
// },
// Login: {
// screen: Loding,
// navigationOptions: {
// header: null,
// },
// },
// Sets: {
// screen: Loding,
// navigationOptions: {
// // header:null,
// },
// },
// // Home: {
// // screen: Router,
// // navigationOptions:{
// // header:null,
// // }
// // },
// // MAP: {
// // screen: MAP
// // },
// // Signup: {
// // screen: DetailsScreen
// // }
// });
// const RootStack = createStackNavigator(
// {
// // Login: { screen: Login_index },
// // Home: { screen: HomeScreen },
// MAP :{screen:MAP},
// // QRvue: { screen: QRvue },
// // Setup: { screen: Setup },
// Details: { screen: DetailsScreen },
// // Phone: {
// // screen: TokenScreen,
// // path: 'token/:token_code',
// // },
// Phone: {
// screen: DetailsScreen,
// path: 'token/:token_code',
// },
// },
// {
// // initialRouteName: 'Login',
// initialRouteName: 'MAP',
// }
// );
const prefix = 'bike://';
// const App = createAppContainer(RootStack);
// export default App ;
// const AppContainer = createAppContainer(RootStack);
const AppContainer = createAppContainer(AppSwitchNavigator);
// const App = createAppContainer(RootStack);
// export default App = createAppContainer(RootStack );
export default class App extends React.Component {
render() {
return <AppContainer />;
}
}
// export default App = () => <RootStack uriPrefix={prefix} />;
// export default App;
// export default DetailsScreen;
const styles = StyleSheet.create({
// scrollView: {
// backgroundColor: Colors.lighter,
// },
// engine: {
// position: 'absolute',
// right: 0,
// },
// body: {
// backgroundColor: Colors.white,
// },
// sectionContainer: {
// marginTop: 32,
// paddingHorizontal: 24,
// },
// sectionTitle: {
// fontSize: 24,
// fontWeight: '600',
// color: Colors.black,
// },
// sectionDescription: {
// marginTop: 8,
// fontSize: 18,
// fontWeight: '400',
// color: Colors.dark,
// },
// highlight: {
// fontWeight: '700',
// },
// footer: {
// color: Colors.dark,
// fontSize: 12,
// fontWeight: '600',
// padding: 4,
// paddingRight: 12,
// textAlign: 'right',
// },
});