mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-19 19:31:54 +03:00
added entry for coin details screen
This commit is contained in:
parent
01c3b9ea9c
commit
7f9ae23991
@ -31,6 +31,7 @@ export default {
|
||||
COMMUNITY: `Community${SCREEN_SUFFIX}`,
|
||||
COMMUNITIES: `Communities${SCREEN_SUFFIX}`,
|
||||
WEB_BROWSER: `WebBrowser${SCREEN_SUFFIX}`,
|
||||
COIN_DETAILS: `CoinDetails${SCREEN_SUFFIX}`,
|
||||
},
|
||||
DRAWER: {
|
||||
MAIN: `Main${DRAWER_SUFFIX}`,
|
||||
|
@ -39,6 +39,7 @@ import {
|
||||
Community,
|
||||
Communities,
|
||||
WebBrowser,
|
||||
CoinDetails,
|
||||
} from '../screens';
|
||||
|
||||
const bottomTabNavigator = createBottomTabNavigator(
|
||||
@ -152,6 +153,7 @@ const stackNavigator = createStackNavigator(
|
||||
[ROUTES.SCREENS.COMMUNITY]: { screen: Community },
|
||||
[ROUTES.SCREENS.COMMUNITIES]: { screen: Communities },
|
||||
[ROUTES.SCREENS.WEB_BROWSER]: { screen: WebBrowser },
|
||||
[ROUTES.SCREENS.COIN_DETAILS]: { screen: CoinDetails },
|
||||
},
|
||||
{
|
||||
headerMode: 'none',
|
||||
|
3
src/screens/coinDetails/index.ts
Normal file
3
src/screens/coinDetails/index.ts
Normal file
@ -0,0 +1,3 @@
|
||||
import CoinDetails from './screen/coinDetailsScreen';
|
||||
|
||||
export default CoinDetails;
|
12
src/screens/coinDetails/screen/coinDetailsScreen.tsx
Normal file
12
src/screens/coinDetails/screen/coinDetailsScreen.tsx
Normal file
@ -0,0 +1,12 @@
|
||||
import { View, Text } from 'react-native'
|
||||
import React from 'react'
|
||||
|
||||
const CoinDetailsScreen = () => {
|
||||
return (
|
||||
<View>
|
||||
<Text>coinDetailsScreen</Text>
|
||||
</View>
|
||||
)
|
||||
}
|
||||
|
||||
export default CoinDetailsScreen
|
@ -26,6 +26,7 @@ import Register from './register/registerScreen';
|
||||
import TagResult from './tagResult';
|
||||
import { Community } from './community';
|
||||
import Communities from './communities';
|
||||
import CoinDetails from './coinDetails';
|
||||
|
||||
export {
|
||||
Bookmarks,
|
||||
@ -56,4 +57,5 @@ export {
|
||||
Community,
|
||||
Communities,
|
||||
WebBrowser,
|
||||
CoinDetails,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user