-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
67 lines (58 loc) · 1.85 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
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE in the project root for license information.
*
* @author Muneeb Ahmed
* @author Corey Miner
* @author Amanda Chesin
*
*/
import React, {Component} from 'react';
import {View} from 'react-native';
import {createStackNavigator, createAppNavigator, createAppContainer} from 'react-navigation';
import {styles} from './app/styles';
import MainNavigator from './app/navigation/MainNavigator';
const App = createAppContainer(MainNavigator);
export default App;
// export default class App extends Component {
// render(){
// return ( <PrimaryNav /> );
// }
// }
/*
export default class App extends Component {
constructor(props, context) {
super(props, context);
this.changePage = this.changePage.bind(this);
this.state = { page : "SignIn" };
}
changePage(text) {
this.setState({
page: text
});
}
componentDidMount() {
}
render() {
const apps = {
'Home': <Home action={this.changePage}/>,
'SignIn' : <SignIn action={this.changePage}/>,
'CreateAccount': <CreateAccount action={this.changePage}/>,
'ConfirmID' : <ConfirmID action={this.changePage}/>,
'TransactionHistory' : <TransactionHistory action={this.changePage}/>,
'Settings': <Settings action={this.changePage}/>,
'CreateQR' : <CreateQR action={this.changePage}/>,
'SavedQR': <SavedQR action={this.changePage}/>,
'Payment' : <Payment action={this.changePage}/>,
'Wallet': <Wallet action={this.changePage}/>,
'Info' : <Info action={this.changePage}/>,
'Help' : <Help action={this.changePage}/>,
'ForgotPassword' : <ForgotPassword action={this.changePage}/>,
}
return (
<View style={styles.container}>
{apps[this.state.page]}
</View>
);
}
}*/