react native drawer navigation on Press Item actionWhat is the difference between using constructor vs getInitialState in React / React Native?What is the difference between React Native and React?Can't hide header on Login Screen in react-nativeHow to push a new scene using react-navigation?How can I change a parent state through a react navigation component?Is there an easy way to create a logout button in the drawer in React Navigation V2?React Navigation DrawerNavigator showing back button instead of drawer buttonReact Native - BackHandler with AlertScreen navigates to Signin screen when I press Signup button in React NativeNavigate between screen React-Native

Divine apple island

How can "mimic phobia" be cured or prevented?

Visiting the UK as unmarried couple

How does the reference system of the Majjhima Nikaya work?

Why does Async/Await work properly when the loop is inside the async function and not the other way around?

On a tidally locked planet, would time be quantized?

Does the Mind Blank spell prevent the target from being frightened?

If a character with the Alert feat rolls a crit fail on their Perception check, are they surprised?

THT: What is a squared annular “ring”?

Can I sign legal documents with a smiley face?

anything or something to eat

What (else) happened July 1st 1858 in London?

Should I stop contributing to retirement accounts?

Indicating multiple different modes of speech (fantasy language or telepathy)

Proving a function is onto where f(x)=|x|.

When quoting, must I also copy hyphens used to divide words that continue on the next line?

How to align and center standalone amsmath equations?

About a little hole in Z'ha'dum

Why did the EU agree to delay the Brexit deadline?

Could the E-bike drivetrain wear down till needing replacement after 400 km?

Why has "pence" been used in this sentence, not "pences"?

How do I implement a file system driver driver in Linux?

Drawing a topological "handle" with Tikz

My friend sent me a screenshot of a transaction hash, but when I search for it I find divergent data. What happened?



react native drawer navigation on Press Item action


What is the difference between using constructor vs getInitialState in React / React Native?What is the difference between React Native and React?Can't hide header on Login Screen in react-nativeHow to push a new scene using react-navigation?How can I change a parent state through a react navigation component?Is there an easy way to create a logout button in the drawer in React Navigation V2?React Navigation DrawerNavigator showing back button instead of drawer buttonReact Native - BackHandler with AlertScreen navigates to Signin screen when I press Signup button in React NativeNavigate between screen React-Native













0















In my drawer navigator, there is log out button when I press on logout. I want to remove app_token but I don't know how.



I try to put something like this:



onItemPress:() => AsyncStorage.removeItem('app_token'),


But it did not work.



const AppDrawerNavigator = createDrawerNavigator(



Logout:

onItemPress:() => AsyncStorage.removeItem('app_token'),

screen: HomePage,
navigationOptions:


drawerIcon: (
<Image style= width: 30, height: 30
source=require('./assets/IconDrawerNavigation/logout.png') />
)

,



);










share|improve this question




























    0















    In my drawer navigator, there is log out button when I press on logout. I want to remove app_token but I don't know how.



    I try to put something like this:



    onItemPress:() => AsyncStorage.removeItem('app_token'),


    But it did not work.



    const AppDrawerNavigator = createDrawerNavigator(



    Logout:

    onItemPress:() => AsyncStorage.removeItem('app_token'),

    screen: HomePage,
    navigationOptions:


    drawerIcon: (
    <Image style= width: 30, height: 30
    source=require('./assets/IconDrawerNavigation/logout.png') />
    )

    ,



    );










    share|improve this question


























      0












      0








      0








      In my drawer navigator, there is log out button when I press on logout. I want to remove app_token but I don't know how.



      I try to put something like this:



      onItemPress:() => AsyncStorage.removeItem('app_token'),


      But it did not work.



      const AppDrawerNavigator = createDrawerNavigator(



      Logout:

      onItemPress:() => AsyncStorage.removeItem('app_token'),

      screen: HomePage,
      navigationOptions:


      drawerIcon: (
      <Image style= width: 30, height: 30
      source=require('./assets/IconDrawerNavigation/logout.png') />
      )

      ,



      );










      share|improve this question
















      In my drawer navigator, there is log out button when I press on logout. I want to remove app_token but I don't know how.



      I try to put something like this:



      onItemPress:() => AsyncStorage.removeItem('app_token'),


      But it did not work.



      const AppDrawerNavigator = createDrawerNavigator(



      Logout:

      onItemPress:() => AsyncStorage.removeItem('app_token'),

      screen: HomePage,
      navigationOptions:


      drawerIcon: (
      <Image style= width: 30, height: 30
      source=require('./assets/IconDrawerNavigation/logout.png') />
      )

      ,



      );







      react-native react-navigation asyncstorage react-navigation-drawer






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 7 at 10:22









      Tshepang

      6,1781772114




      6,1781772114










      asked Mar 7 at 8:59









      Firas Abu FaresFiras Abu Fares

      63




      63






















          0






          active

          oldest

          votes











          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%2f55039740%2freact-native-drawer-navigation-on-press-item-action%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          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%2f55039740%2freact-native-drawer-navigation-on-press-item-action%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







          Popular posts from this blog

          AWS Lex not identifying response if by a variable The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceEnforcing custom enumeration in AWS LEX for slot valuesHow to give response based on user response in Amazon Lex?Intercepting AWS Lambda Response to a AWS Lex QueryLex chat bot error: Reached second execution of fulfillment lambda on the same utteranceamazon lex showing invalid responseLambda response send back to Lex slot?Response card in Amazon lexAmazon Lex - Lambda response return HTML to botHow can I solve 424 (Failed Dependency) (python) obtained from Amazon lex?

          Алба-Юлія

          Захаров Федір Захарович