Guest User

App.js (navigation defined)

a guest
Aug 17th, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import { AppRegistry, Settings } from 'react-native';
  2. import { createStackNavigator } from 'react-navigation';
  3. import SplashScreen from './layouts/SplashScreen';
  4. import LoginScreen from './layouts/LoginScreen';
  5. import SignupScreen from './layouts/SignupScreen';
  6. import VerifyOTP from './layouts/VerifyOTP';
  7. import Dashboard from './layouts/Dashboard';
  8. import CategoryList from './layouts/CategoryList';
  9. import CreateList from './layouts/CreateList';
  10. import Category from './layouts/Category';
  11. import CreateTask from './layouts/CreateTask';
  12. import ListDetail from './layouts/ListDetail';
  13. import CreateEvent from './layouts/CreateEvent';
  14. import Reminder from './layouts/Reminder';
  15. import EventList from './layouts/EventList';
  16. import Calender from './layouts/Calender';
  17. import DayViewCalender from './layouts/DayViewCalender';
  18. import CheehooSettings from './layouts/Settings'
  19. import ShareCalender from './layouts/ShareCalender';
  20. import TaskDetail from './layouts/TaskDetail';
  21. import CalenderWeekView from './layouts/CalenderWeekView';
  22. import LocationMapView from './layouts/LocationMapView';
  23. import GooglePlaceService from './layouts/GooglePlaceService';
  24. import ForgotPassword from './layouts/ForgotPassword';
  25. import ResetPass from './layouts/ResetPassword';
  26. import CalenderThreeDay from "./layouts/CalenderThreeDay";
  27. import CalendarDayView from "./layouts/CalendarDayView";
  28. import CalendarYearView from "./layouts/CalendarYearView";
  29. import ShareWithCalendar from "./layouts/ShareWithCalendar";
  30. import ShareWithAccount from "./layouts/ShareWithAccount";
  31. import CalendarSetting from "./layouts/CalendarSetting";
  32. import PrintCalendar from "./layouts/PrintCalendar";
  33. import ForgotPasswordVerifyOTP from './layouts/ForgotPasswordVerifyOTP';
  34. import ArchivedList from './layouts/ArchivedList';
  35.  
  36.  
  37. const App = createStackNavigator({
  38.     SplashScreen: {
  39.         screen: SplashScreen
  40.     },
  41.     LoginScreen:{
  42.         screen:LoginScreen
  43.     },
  44.     SignupScreen:{
  45.         screen:SignupScreen
  46.     },
  47.     VerifyOTP:{
  48.         screen:VerifyOTP
  49.     },
  50.     Dashboard:{
  51.         screen:Dashboard
  52.     },
  53.     CategoryList:{
  54.         screen:CategoryList
  55.     },
  56.     CreateList:{
  57.         screen:CreateList
  58.     },
  59.     CreateTask:{
  60.         screen:CreateTask
  61.     },
  62.     Category:{
  63.         screen:Category
  64.     },
  65.     ListDetail:{
  66.         screen:ListDetail
  67.     },
  68.     CreateEvent:{
  69.         screen:CreateEvent
  70.     },
  71.     Reminder:{
  72.         screen:Reminder
  73.     },
  74.     EventList:{
  75.         screen:EventList
  76.     },
  77.     Calender:{
  78.         screen:Calender
  79.     },
  80.     DayViewCalender:{
  81.         screen:DayViewCalender
  82.     },
  83.     CheehooSettings:{
  84.         screen:CheehooSettings
  85.     },
  86.     ShareCalender:{
  87.         screen:ShareCalender
  88.     },
  89.     TaskDetail:{
  90.         screen:TaskDetail
  91.     },
  92.     CalenderWeekView:{
  93.         screen:CalenderWeekView
  94.     },
  95.     LocationMapView:{
  96.         screen:LocationMapView
  97.     },
  98.     GooglePlaceService:{
  99.         screen:GooglePlaceService
  100.     },
  101.     ForgotPassword:{
  102.         screen:ForgotPassword
  103.     },
  104.     ResetPass:{
  105.         screen:ResetPass
  106.     },
  107.     CalenderThreeDay: {
  108.         screen: CalenderThreeDay,
  109.     },
  110.     CalendarDayView: {
  111.         screen: CalendarDayView
  112.     },
  113.     CalendarYearView: {
  114.         screen: CalendarYearView,
  115.     },
  116.     ShareWithCalendar: {
  117.         screen: ShareWithCalendar,
  118.     },
  119.     ShareWithAccount: {
  120.         screen: ShareWithAccount,
  121.     },
  122.     CalendarSetting: {
  123.         screen: CalendarSetting,
  124.     },
  125.     PrintCalendar: {
  126.         screen: PrintCalendar,
  127.     },
  128.     ForgotPasswordVerifyOTP:{
  129.         screen:ForgotPasswordVerifyOTP
  130.     },
  131.     ArchivedList:{
  132.         screen:ArchivedList
  133.     }
  134.    
  135.    
  136. }, { headerMode: 'none' });
  137. AppRegistry.registerComponent('cheehoo', () => App);
Add Comment
Please, Sign In to add comment