mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-23 21:35:04 +03:00
73 lines
1.9 KiB
JavaScript
73 lines
1.9 KiB
JavaScript
import React from 'react';
|
|
import { createBottomTabNavigator } from 'react-navigation-tabs';
|
|
|
|
// Constants
|
|
import ROUTES from '../constants/routeNames';
|
|
|
|
// Components
|
|
import { Icon, IconContainer } from '../components/icon';
|
|
import { Home, Notification, Profile, Points } from '../screens';
|
|
import { PostButton, BottomTabBar } from '../components';
|
|
|
|
const BaseNavigator = createBottomTabNavigator(
|
|
{
|
|
[ROUTES.TABBAR.HOME]: {
|
|
screen: Home,
|
|
navigationOptions: () => ({
|
|
tabBarIcon: ({ tintColor }) => (
|
|
<Icon iconType="MaterialIcons" name="view-day" color={tintColor} size={26} />
|
|
),
|
|
}),
|
|
},
|
|
[ROUTES.TABBAR.NOTIFICATION]: {
|
|
screen: Notification,
|
|
navigationOptions: () => ({
|
|
tabBarIcon: ({ tintColor }) => (
|
|
<IconContainer
|
|
isBadge
|
|
badgeType="notification"
|
|
iconType="MaterialIcons"
|
|
name="notifications"
|
|
color={tintColor}
|
|
size={26}
|
|
/>
|
|
),
|
|
}),
|
|
},
|
|
[ROUTES.TABBAR.POST_BUTTON]: {
|
|
screen: () => null,
|
|
navigationOptions: {
|
|
tabBarIcon: ({ tintColor }) => <PostButton />,
|
|
},
|
|
},
|
|
[ROUTES.TABBAR.POINTS]: {
|
|
screen: Points,
|
|
navigationOptions: () => ({
|
|
tabBarIcon: ({ tintColor }) => (
|
|
<Icon iconType="MaterialCommunityIcons" name="gift-outline" color={tintColor} size={26} />
|
|
),
|
|
}),
|
|
},
|
|
[ROUTES.TABBAR.PROFILE]: {
|
|
screen: Profile,
|
|
navigationOptions: () => ({
|
|
tabBarIcon: ({ tintColor }) => (
|
|
<Icon iconType="MaterialIcons" name="credit-card" color={tintColor} size={26} />
|
|
),
|
|
}),
|
|
},
|
|
},
|
|
{
|
|
tabBarComponent: props => <BottomTabBar {...props} />,
|
|
tabBarOptions: {
|
|
showLabel: false,
|
|
activeTintColor: '#f6f6f6',
|
|
inactiveTintColor: '#c1c5c7',
|
|
style: {},
|
|
tabStyle: {},
|
|
},
|
|
},
|
|
);
|
|
|
|
export { BaseNavigator };
|