LandingPageNavigator.js 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. import { View, Text, UIManager, Platform } from 'react-native';
  2. import React from 'react';
  3. import { createDrawerNavigator } from '@react-navigation/drawer';
  4. import LandingPage from '../screens/LandingPage';
  5. import NewscoutHomeHeader from '../components/organisms/Headers/NewscoutHomeHeader';
  6. import metrics from '../theme/metrics';
  7. import SidebarPage from '../screens/SidebarPage';
  8. import { TouchableWithoutFeedback } from 'react-native-gesture-handler';
  9. import MaterialIcon from "react-native-vector-icons/dist/MaterialIcons";
  10. import colors from '../theme/colors';
  11. const Drawer = createDrawerNavigator();
  12. const LandingPageNavigator = () => {
  13. const isLargeScreen = metrics.screenWidth >= 768;
  14. if (
  15. Platform.OS === 'android' &&
  16. UIManager.setLayoutAnimationEnabledExperimental
  17. ) {
  18. UIManager.setLayoutAnimationEnabledExperimental(true);
  19. }
  20. return (
  21. <Drawer.Navigator
  22. initialRouteName="LandingPage"
  23. screenOptions={{
  24. drawerType: 'front',
  25. drawerStyle: isLargeScreen ? null : { width: '100%' },
  26. }}
  27. drawerContent={({ navigation }) => <SidebarPage navigation={navigation} />}>
  28. <Drawer.Screen
  29. name="LandingPage"
  30. component={LandingPage}
  31. options={({ navigation }) => ({
  32. headerShown: true,
  33. header: () => (
  34. <NewscoutHomeHeader>
  35. <View style={{alignItems:'center',flexDirection: 'row',gap: 16}}>
  36. <TouchableWithoutFeedback onPress={null}>
  37. <MaterialIcon name='notifications-none' color={colors.tertiaryColor} size={30} />
  38. </TouchableWithoutFeedback>
  39. <TouchableWithoutFeedback onPress={() => navigation.toggleDrawer()}>
  40. <MaterialIcon name='list' color={colors.topColor} size={30} />
  41. </TouchableWithoutFeedback>
  42. </View>
  43. </NewscoutHomeHeader>
  44. ),
  45. })}
  46. />
  47. </Drawer.Navigator>
  48. );
  49. };
  50. export default LandingPageNavigator;