React Native: when you navigate away from a component, does that component ever get un-mounted?
问题 In my React Native app, if I have a stack navigator and I navigate from screenA to screenB with this.props.navigation.navigate('screenB') , is it possible that screenA would ever get un-mounted? The reason I ask is that when screenA mounts, I make an API call that will load a resource that will be available in all screens via Redux. I might navigate to screenB while that API call is still in progress. So I want to know if it's possible that my navigating to screenB too soon could prevent the