-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathApp.js
More file actions
26 lines (23 loc) · 919 Bytes
/
Copy pathApp.js
File metadata and controls
26 lines (23 loc) · 919 Bytes
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
import React from 'react';
import { createStackNavigator } from 'react-navigation';
import WelcomeScreen from './src/screen/welcome';
import MyWalletScreen from './src/screen/mywallet';
import AddWalletScreen from './src/screen/addwallet';
import ImportWalletScreen from './src/screen/importwallet';
import WalletDetailScreen from './src/screen/welletdetail';
import TransactionsScreen from './src/screen/transactions';
import SendCoinScreen from './src/screen/sendcoin';
const App = createStackNavigator({
Welcome: { screen: WelcomeScreen },
MyWallet: { screen: MyWalletScreen },
AddWallet: { screen: AddWalletScreen },
ImportWallet: { screen: ImportWalletScreen },
WalletDetail: { screen: WalletDetailScreen },
Transactions: { screen: TransactionsScreen },
SendCoin: { screen: SendCoinScreen },
},
{
initialRouteName: "Welcome",
cardStyle: { backgroundColor: '#FFFFFF' },
});
export default App;