Android back button does not work as expecteddefault values from initial state are loaded before store rehydrates with redux-persistDesign state tree for search, filter, paging and refreshReact Navigation redux navigateReact Redux reset dataHow to enable React component re-rendering both before and after async call?React/Redux : using data from Redux store during component's initial render() callthe global state won't update by dispatch reducerthis.props not updated after componentWillReceiveProps is calledReact Navigation - Pass props into Navigatorreact redux mapStateToProps - correct props not making it to the component

How can the Zone of Truth spell be defeated without the caster knowing?

What was the first Intel x86 processor with "Base + Index * Scale + Displacement" addressing mode?

Why other Westeros houses don't use wildfire?

Mac Pro install disk keeps ejecting itself

Is it possible to determine the symmetric encryption method used by output size?

Will tsunami waves travel forever if there was no land?

Why isn't the definition of absolute value applied when squaring a radical containing a variable?

Controversial area of mathematics

How can I place the product on a social media post better?

With a Canadian student visa, can I spend a night at Vancouver before continuing to Toronto?

What does KSP mean?

Why do games have consumables?

How exactly does Hawking radiation decrease the mass of black holes?

French for 'It must be my imagination'?

how to sum variables from file in bash

How to have a sharp product image?

Does Gita support doctrine of eternal cycle of birth and death for evil people?

simple conditions equation

Do I have an "anti-research" personality?

What does it mean to express a gate in Dirac notation?

What makes accurate emulation of old systems a difficult task?

How to pronounce 'C++' in Spanish

Does holding a wand and speaking its command word count as V/S/M spell components?

Binary Numbers Magic Trick



Android back button does not work as expected


default values from initial state are loaded before store rehydrates with redux-persistDesign state tree for search, filter, paging and refreshReact Navigation redux navigateReact Redux reset dataHow to enable React component re-rendering both before and after async call?React/Redux : using data from Redux store during component's initial render() callthe global state won't update by dispatch reducerthis.props not updated after componentWillReceiveProps is calledReact Navigation - Pass props into Navigatorreact redux mapStateToProps - correct props not making it to the component






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















My screen should show a spinner util I get a response from the async operation that's running.



Expected Behavior
Clicking AndroidBackButton while the loading state is true ... I should jump back to the Home screen, and cancel the current op.



I determine the loading state by a loading field I pull up from my redux store ...



 handleAndroidBackButton = () => 
const loading = this.props;

if (loading)
return navigation.navigate('Search', mode: BLANK, query: '' );




Issue is loading field inside handleAndroidBackButton is always false ...



However I tried to console log the value of loading in the render method, and it turns into false as expected.



handleAndroidBackButton doesn't sound to listen to changes of the component's props correctly ... I don know.



Any help?










share|improve this question






























    1















    My screen should show a spinner util I get a response from the async operation that's running.



    Expected Behavior
    Clicking AndroidBackButton while the loading state is true ... I should jump back to the Home screen, and cancel the current op.



    I determine the loading state by a loading field I pull up from my redux store ...



     handleAndroidBackButton = () => 
    const loading = this.props;

    if (loading)
    return navigation.navigate('Search', mode: BLANK, query: '' );




    Issue is loading field inside handleAndroidBackButton is always false ...



    However I tried to console log the value of loading in the render method, and it turns into false as expected.



    handleAndroidBackButton doesn't sound to listen to changes of the component's props correctly ... I don know.



    Any help?










    share|improve this question


























      1












      1








      1








      My screen should show a spinner util I get a response from the async operation that's running.



      Expected Behavior
      Clicking AndroidBackButton while the loading state is true ... I should jump back to the Home screen, and cancel the current op.



      I determine the loading state by a loading field I pull up from my redux store ...



       handleAndroidBackButton = () => 
      const loading = this.props;

      if (loading)
      return navigation.navigate('Search', mode: BLANK, query: '' );




      Issue is loading field inside handleAndroidBackButton is always false ...



      However I tried to console log the value of loading in the render method, and it turns into false as expected.



      handleAndroidBackButton doesn't sound to listen to changes of the component's props correctly ... I don know.



      Any help?










      share|improve this question
















      My screen should show a spinner util I get a response from the async operation that's running.



      Expected Behavior
      Clicking AndroidBackButton while the loading state is true ... I should jump back to the Home screen, and cancel the current op.



      I determine the loading state by a loading field I pull up from my redux store ...



       handleAndroidBackButton = () => 
      const loading = this.props;

      if (loading)
      return navigation.navigate('Search', mode: BLANK, query: '' );




      Issue is loading field inside handleAndroidBackButton is always false ...



      However I tried to console log the value of loading in the render method, and it turns into false as expected.



      handleAndroidBackButton doesn't sound to listen to changes of the component's props correctly ... I don know.



      Any help?







      reactjs react-native react-redux react-native-android






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 23 at 9:22







      Hend El-Sahli

















      asked Mar 22 at 17:59









      Hend El-SahliHend El-Sahli

      1,2681314




      1,2681314






















          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%2f55305403%2fandroid-back-button-does-not-work-as-expected%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%2f55305403%2fandroid-back-button-does-not-work-as-expected%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

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript