|
@@ -1,18 +1,17 @@
|
|
|
import React from 'react'
|
|
|
-import LandingPage from '../screens/LandingPage';
|
|
|
import SearchPage from '../screens/SearchPage';
|
|
|
import BookmarkPage from '../screens/BookmarkPage';
|
|
|
import SettingsPage from '../screens/SettingsPage';
|
|
|
import { createBottomTabNavigator } from "@react-navigation/bottom-tabs"
|
|
|
-import OctiIcon from 'react-native-vector-icons/dist/Octicons';
|
|
|
import IonIcon from 'react-native-vector-icons/dist/Ionicons';
|
|
|
-
|
|
|
import colors from '../theme/colors';
|
|
|
import fonts from '../theme/fonts';
|
|
|
import NewscoutHomeHeader from '../components/organisms/Headers/NewscoutHomeHeader';
|
|
|
-import Header from '../components/atoms/Header';
|
|
|
import NewscoutTitleHeader from '../components/organisms/Headers/NewscoutTitleHeader';
|
|
|
-import { TouchableOpacity, View, Text } from 'react-native';
|
|
|
+import BookmarkNavigator from './BookmarkNavigator';
|
|
|
+import LandingPageNavigator from './LandingPageNavigator';
|
|
|
+
|
|
|
+
|
|
|
|
|
|
const Tab = createBottomTabNavigator();
|
|
|
|
|
@@ -55,10 +54,10 @@ const HomePageNavigator = ({ route, navigation }) => {
|
|
|
>
|
|
|
<Tab.Screen
|
|
|
name="Landing"
|
|
|
- component={LandingPage}
|
|
|
- options={({ navigation }) => ({
|
|
|
- header: () => <NewscoutHomeHeader />
|
|
|
- })} />
|
|
|
+ component={LandingPageNavigator}
|
|
|
+ options={(navigation) => ({
|
|
|
+ headerShown: false
|
|
|
+ })}/>
|
|
|
<Tab.Screen
|
|
|
name="Search"
|
|
|
component={SearchPage}
|
|
@@ -67,11 +66,9 @@ const HomePageNavigator = ({ route, navigation }) => {
|
|
|
})} />
|
|
|
<Tab.Screen
|
|
|
name="Bookmark"
|
|
|
- component={BookmarkPage}
|
|
|
+ component={BookmarkNavigator}
|
|
|
options={(navigation) => ({
|
|
|
- header: () => <NewscoutTitleHeader title={"My Bookmarks"}>
|
|
|
- <OctiIcon name='three-bars' size={24} color={colors.topColor} />
|
|
|
- </NewscoutTitleHeader>
|
|
|
+ headerShown: false
|
|
|
})}
|
|
|
/>
|
|
|
<Tab.Screen
|