How to set NavigationOptions of a parent?












0















I have nested navigator in my app. I would like my header bar to be set on the root of the navigaton, so there will be a mutual header bar to all screens in my application.



my index.js is:



const StackOpportunityNavigator = createStackNavigator(
{
MainOpportunity: OpportunityScreen,
ClientScreen: ClientScreen,
BusinessMapLocation: BusinessMapLocation,
LoginScreen: LoginScreen
},
{
initialRouteName: 'MainOpportunity',
headerMode: 'none',
transitionConfig: () => fromLeft(600),
}
);

const DrawerNavigationOptions = createDrawerNavigator(
{
OpportunityStack: { screen: StackOpportunityNavigator },
History: HistoryScreen,
MyChances: MyChancesScreen,
Info: InfoScreen
},
{
contentComponent: (props) => <SideBar {...props} />,
drawerPosition: 'right',
transitionConfig: () => fromLeft(600),
}
);

const LoginNavigator = createStackNavigator(
{
LoadingScreen: LoadingScreen,
LoginScreen: LoginScreen,
DrawerNavigator: DrawerNavigationOptions
},
{
transitionConfig: () => fromLeft(600),
headerMode: 'screen',
navigationOptions: {
headerStyle: {
backgroundColor: Colors.primary
},
headerTintColor: '#fff',
headerTitleStyle: {
fontWeight: 'normal',
fontSize: 18
}
}
}
);

export default LoginNavigator;


In every screen in my application i have this code:



static navigationOptions = {
header: <HeaderBar title={'currentScreenTitle'} />
};


However it works from 'LoginScreen' screen and all the others from 'LoginNavigator', but not from any other screen like 'History'.



How can i still control the navigation options from other screen like 'History' and set the title, if my navigation header bar is in the most root navigator?



Hope you understand my question.
Really hope to for your answers as fast as possible.
Thanks guys!










share|improve this question



























    0















    I have nested navigator in my app. I would like my header bar to be set on the root of the navigaton, so there will be a mutual header bar to all screens in my application.



    my index.js is:



    const StackOpportunityNavigator = createStackNavigator(
    {
    MainOpportunity: OpportunityScreen,
    ClientScreen: ClientScreen,
    BusinessMapLocation: BusinessMapLocation,
    LoginScreen: LoginScreen
    },
    {
    initialRouteName: 'MainOpportunity',
    headerMode: 'none',
    transitionConfig: () => fromLeft(600),
    }
    );

    const DrawerNavigationOptions = createDrawerNavigator(
    {
    OpportunityStack: { screen: StackOpportunityNavigator },
    History: HistoryScreen,
    MyChances: MyChancesScreen,
    Info: InfoScreen
    },
    {
    contentComponent: (props) => <SideBar {...props} />,
    drawerPosition: 'right',
    transitionConfig: () => fromLeft(600),
    }
    );

    const LoginNavigator = createStackNavigator(
    {
    LoadingScreen: LoadingScreen,
    LoginScreen: LoginScreen,
    DrawerNavigator: DrawerNavigationOptions
    },
    {
    transitionConfig: () => fromLeft(600),
    headerMode: 'screen',
    navigationOptions: {
    headerStyle: {
    backgroundColor: Colors.primary
    },
    headerTintColor: '#fff',
    headerTitleStyle: {
    fontWeight: 'normal',
    fontSize: 18
    }
    }
    }
    );

    export default LoginNavigator;


    In every screen in my application i have this code:



    static navigationOptions = {
    header: <HeaderBar title={'currentScreenTitle'} />
    };


    However it works from 'LoginScreen' screen and all the others from 'LoginNavigator', but not from any other screen like 'History'.



    How can i still control the navigation options from other screen like 'History' and set the title, if my navigation header bar is in the most root navigator?



    Hope you understand my question.
    Really hope to for your answers as fast as possible.
    Thanks guys!










    share|improve this question

























      0












      0








      0








      I have nested navigator in my app. I would like my header bar to be set on the root of the navigaton, so there will be a mutual header bar to all screens in my application.



      my index.js is:



      const StackOpportunityNavigator = createStackNavigator(
      {
      MainOpportunity: OpportunityScreen,
      ClientScreen: ClientScreen,
      BusinessMapLocation: BusinessMapLocation,
      LoginScreen: LoginScreen
      },
      {
      initialRouteName: 'MainOpportunity',
      headerMode: 'none',
      transitionConfig: () => fromLeft(600),
      }
      );

      const DrawerNavigationOptions = createDrawerNavigator(
      {
      OpportunityStack: { screen: StackOpportunityNavigator },
      History: HistoryScreen,
      MyChances: MyChancesScreen,
      Info: InfoScreen
      },
      {
      contentComponent: (props) => <SideBar {...props} />,
      drawerPosition: 'right',
      transitionConfig: () => fromLeft(600),
      }
      );

      const LoginNavigator = createStackNavigator(
      {
      LoadingScreen: LoadingScreen,
      LoginScreen: LoginScreen,
      DrawerNavigator: DrawerNavigationOptions
      },
      {
      transitionConfig: () => fromLeft(600),
      headerMode: 'screen',
      navigationOptions: {
      headerStyle: {
      backgroundColor: Colors.primary
      },
      headerTintColor: '#fff',
      headerTitleStyle: {
      fontWeight: 'normal',
      fontSize: 18
      }
      }
      }
      );

      export default LoginNavigator;


      In every screen in my application i have this code:



      static navigationOptions = {
      header: <HeaderBar title={'currentScreenTitle'} />
      };


      However it works from 'LoginScreen' screen and all the others from 'LoginNavigator', but not from any other screen like 'History'.



      How can i still control the navigation options from other screen like 'History' and set the title, if my navigation header bar is in the most root navigator?



      Hope you understand my question.
      Really hope to for your answers as fast as possible.
      Thanks guys!










      share|improve this question














      I have nested navigator in my app. I would like my header bar to be set on the root of the navigaton, so there will be a mutual header bar to all screens in my application.



      my index.js is:



      const StackOpportunityNavigator = createStackNavigator(
      {
      MainOpportunity: OpportunityScreen,
      ClientScreen: ClientScreen,
      BusinessMapLocation: BusinessMapLocation,
      LoginScreen: LoginScreen
      },
      {
      initialRouteName: 'MainOpportunity',
      headerMode: 'none',
      transitionConfig: () => fromLeft(600),
      }
      );

      const DrawerNavigationOptions = createDrawerNavigator(
      {
      OpportunityStack: { screen: StackOpportunityNavigator },
      History: HistoryScreen,
      MyChances: MyChancesScreen,
      Info: InfoScreen
      },
      {
      contentComponent: (props) => <SideBar {...props} />,
      drawerPosition: 'right',
      transitionConfig: () => fromLeft(600),
      }
      );

      const LoginNavigator = createStackNavigator(
      {
      LoadingScreen: LoadingScreen,
      LoginScreen: LoginScreen,
      DrawerNavigator: DrawerNavigationOptions
      },
      {
      transitionConfig: () => fromLeft(600),
      headerMode: 'screen',
      navigationOptions: {
      headerStyle: {
      backgroundColor: Colors.primary
      },
      headerTintColor: '#fff',
      headerTitleStyle: {
      fontWeight: 'normal',
      fontSize: 18
      }
      }
      }
      );

      export default LoginNavigator;


      In every screen in my application i have this code:



      static navigationOptions = {
      header: <HeaderBar title={'currentScreenTitle'} />
      };


      However it works from 'LoginScreen' screen and all the others from 'LoginNavigator', but not from any other screen like 'History'.



      How can i still control the navigation options from other screen like 'History' and set the title, if my navigation header bar is in the most root navigator?



      Hope you understand my question.
      Really hope to for your answers as fast as possible.
      Thanks guys!







      reactjs react-native header navigation navigator






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 15 '18 at 15:35









      Sophie CoopermanSophie Cooperman

      1545




      1545
























          1 Answer
          1






          active

          oldest

          votes


















          0














          I have been having the same issue what I did is made header null in navigationOptions and added my header component in screen as a regular component and performed all the logic, Its not the best practice but a work around :)






          share|improve this answer
























          • yes i did it too... but i really want to learn the best practice in coding, and i think i just miss some simple solution

            – Sophie Cooperman
            Nov 15 '18 at 16:29











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53322839%2fhow-to-set-navigationoptions-of-a-parent%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          I have been having the same issue what I did is made header null in navigationOptions and added my header component in screen as a regular component and performed all the logic, Its not the best practice but a work around :)






          share|improve this answer
























          • yes i did it too... but i really want to learn the best practice in coding, and i think i just miss some simple solution

            – Sophie Cooperman
            Nov 15 '18 at 16:29
















          0














          I have been having the same issue what I did is made header null in navigationOptions and added my header component in screen as a regular component and performed all the logic, Its not the best practice but a work around :)






          share|improve this answer
























          • yes i did it too... but i really want to learn the best practice in coding, and i think i just miss some simple solution

            – Sophie Cooperman
            Nov 15 '18 at 16:29














          0












          0








          0







          I have been having the same issue what I did is made header null in navigationOptions and added my header component in screen as a regular component and performed all the logic, Its not the best practice but a work around :)






          share|improve this answer













          I have been having the same issue what I did is made header null in navigationOptions and added my header component in screen as a regular component and performed all the logic, Its not the best practice but a work around :)







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 15 '18 at 16:14









          Ammar TariqAmmar Tariq

          979




          979













          • yes i did it too... but i really want to learn the best practice in coding, and i think i just miss some simple solution

            – Sophie Cooperman
            Nov 15 '18 at 16:29



















          • yes i did it too... but i really want to learn the best practice in coding, and i think i just miss some simple solution

            – Sophie Cooperman
            Nov 15 '18 at 16:29

















          yes i did it too... but i really want to learn the best practice in coding, and i think i just miss some simple solution

          – Sophie Cooperman
          Nov 15 '18 at 16:29





          yes i did it too... but i really want to learn the best practice in coding, and i think i just miss some simple solution

          – Sophie Cooperman
          Nov 15 '18 at 16:29


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53322839%2fhow-to-set-navigationoptions-of-a-parent%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Hercules Kyvelos

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud